diff options
author | drebs <drebs@leap.se> | 2013-07-24 01:36:50 -0300 |
---|---|---|
committer | drebs <drebs@leap.se> | 2013-07-24 18:22:14 -0300 |
commit | 776d5084a381fb27873e0b0f7c81f1aca6654d26 (patch) | |
tree | 310d9f89d87863fe64c434be461c9fa369143744 /README.rst | |
parent | 7feefdc283d896fdccee8067d867c14f674a912c (diff) |
Update README with instructions for running tests.
Diffstat (limited to 'README.rst')
-rw-r--r-- | README.rst | 16 |
1 files changed, 14 insertions, 2 deletions
@@ -10,7 +10,19 @@ This software is under development. Tests ----- -To run CouchDB tests, be sure you have ``CouchDB`` installed on your system. -Tests can be run with:: +Client and server tests are both included in leap.soledad. Because +soledad_server depends on soledad and soledad tests depend on soledad_server, +if you want to run tests in development mode you must first install soledad, +then soledad_server, and then run the tests. +Therefore, tests must be run with:: + + cd soledad + python setup.py develop + cd ../soledad_server + python setup.py develop + cd ../soledad python setup.py test + +Note that to run CouchDB tests, be sure you have ``CouchDB`` installed on your +system. |