Commit 4e1dbdd7 by willmcgugan

Added simplejson dependancy to tox.ini

parent 081673c0
...@@ -16,7 +16,11 @@ try: ...@@ -16,7 +16,11 @@ try:
# is not in standard CPython >=2.6 library. # is not in standard CPython >=2.6 library.
import simplejson as json import simplejson as json
except ImportError: except ImportError:
import json try:
import json
except ImportError:
print "simplejson (http://pypi.python.org/pypi/simplejson/) required"
raise
from .connection import Connection from .connection import Connection
......
...@@ -9,6 +9,7 @@ deps=dexml ...@@ -9,6 +9,7 @@ deps=dexml
pyftpdlib pyftpdlib
[testenv:py25] [testenv:py25]
deps = simplejson
commands = nosetests -v \ commands = nosetests -v \
[] []
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment