summaryrefslogtreecommitdiff
path: root/README.rst
diff options
context:
space:
mode:
authorTomás Touceda <chiiph@leap.se>2013-07-25 10:35:06 -0300
committerTomás Touceda <chiiph@leap.se>2013-07-25 10:35:06 -0300
commit8e4d572553a40257edc396a04689e4e42be807f3 (patch)
treefbba770b2dcb47982f1659cc87e6ea2e1a4d4d97 /README.rst
parent4e1aad7501b66996720263aec164a2c3a1ef2dff (diff)
parent776d5084a381fb27873e0b0f7c81f1aca6654d26 (diff)
Merge remote-tracking branch 'drebs/feature/2621-refactor-auth-to-make-it-adaptable' into develop
Diffstat (limited to 'README.rst')
-rw-r--r--README.rst16
1 files changed, 14 insertions, 2 deletions
diff --git a/README.rst b/README.rst
index b6ffea30..fa953f05 100644
--- a/README.rst
+++ b/README.rst
@@ -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.