diff options
-rw-r--r-- | README.rst | 7 | ||||
-rw-r--r-- | testing/tox.ini | 4 |
2 files changed, 6 insertions, 5 deletions
@@ -47,11 +47,10 @@ Compatibility Tests ----- -Client and server tests are both included in leap.soledad.common. If you want -to run tests in development mode you must do the following:: +Soledad tests use tox, and they live in the testing folder:: - scripts/develop_mode.sh - scripts/run_tests.sh + cd testing + tox Note that to run CouchDB tests, be sure you have `CouchDB`_ installed on your system. diff --git a/testing/tox.ini b/testing/tox.ini index 0a8dda9d..3663eef3 100644 --- a/testing/tox.ini +++ b/testing/tox.ini @@ -2,10 +2,12 @@ envlist = py27 [testenv] -commands = py.test {posargs} +commands = py.test --pep8 {posargs} changedir = tests deps = pytest + pytest-flake8 + pytest-pep8 mock testscenarios setuptools-trial |