[Zodb-checkins] CVS: ZODB3 - README.txt:1.6

Jeremy Hylton jeremy@zope.com
Wed, 11 Sep 2002 19:13:18 -0400


Update of /cvs-repository/ZODB3
In directory cvs.zope.org:/tmp/cvs-serv17351

Modified Files:
	README.txt 
Log Message:
Explain how to install with ZEO1 and how to run the tests.


=== ZODB3/README.txt 1.5 => 1.6 ===
--- ZODB3/README.txt:1.5	Wed Sep 11 18:43:02 2002
+++ ZODB3/README.txt	Wed Sep 11 19:13:18 2002
@@ -81,7 +81,35 @@
     >>> ZODB.__version__
     '3.1b1'
 
-XXX Installation --with-zeo1
+To install ZODB3 using ZEO version 1 instead of version 2, pass the 
+``--with-zeo1`` argument to setup.py when you build and install::
+
+    % python setup.py build --with-zeo1
+
+    % python setup.py install --with-zeo1
+
+Testing
+-------
+
+ZODB3 comes with a large test suite that can be run from the source
+directory before ZODB is installed.  The simplest way to run the tests
+is::
+
+    % python test.py -v
+
+This command will run all the tests, printing a single dot for each
+test.  When it finishes, it will print a test summary.  The exact
+number of tests can vary depending on platform and available
+third-party libraries.  On Windows, the tests can take much longer to
+execute::
+
+
+    Ran 956 tests in 153.175s
+
+    OK
+
+The test script has many more options.  Use the ``-h`` or ``--help``
+options to see a file list of options.
 
 History
 -------