summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorRyan Williams <breath@alum.mit.edu>2010-06-07 12:15:41 -0700
committerRyan Williams <breath@alum.mit.edu>2010-06-07 12:15:41 -0700
commiteb5066a11e37ef54ea545a036be052c7c6fd6c75 (patch)
tree2f2818580c3f91129c0068de40d544d514a21344 /doc
parent605936f15c447d436e33fb59913f128eb70a62fd (diff)
downloadeventlet-eb5066a11e37ef54ea545a036be052c7c6fd6c75.tar.gz
Added note about running tests under 2.4
Diffstat (limited to 'doc')
-rw-r--r--doc/testing.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/doc/testing.rst b/doc/testing.rst
index 38a94db..596bc5a 100644
--- a/doc/testing.rst
+++ b/doc/testing.rst
@@ -23,6 +23,8 @@ That's it! The output from running nose is the same as unittest's output, if th
Many tests are skipped based on environmental factors; for example, it makes no sense to test Twisted-specific functionality when Twisted is not installed. These are printed as S's during execution, and in the summary printed after the tests run it will tell you how many were skipped.
+.. note:: If running Python version 2.4, use this command instead: ``python tests/nosewrapper.py``. There are several tests which make use of the `with` statement and therefore will cause nose grief when it tries to import them; nosewrapper.py excludes these tests so they are skipped.
+
Doctests
--------