bumping version to pytest-2.0.1, regen docs and examples

This commit is contained in:
holger krekel
2011-02-03 15:14:50 +01:00
parent 762ea71f67
commit 35b0b376f0
18 changed files with 191 additions and 131 deletions
+3 -3
View File
@@ -45,7 +45,7 @@ Running the test looks like this::
$ py.test test_simplefactory.py
=========================== test session starts ============================
platform linux2 -- Python 2.6.5 -- pytest-2.0.0
platform linux2 -- Python 2.6.6 -- pytest-2.0.1
collecting ... collected 1 items
test_simplefactory.py F
@@ -150,7 +150,7 @@ Running this::
$ py.test test_example.py
=========================== test session starts ============================
platform linux2 -- Python 2.6.5 -- pytest-2.0.0
platform linux2 -- Python 2.6.6 -- pytest-2.0.1
collecting ... collected 10 items
test_example.py .........F
@@ -188,7 +188,7 @@ If you want to select only the run with the value ``7`` you could do::
$ py.test -v -k 7 test_example.py # or -k test_func[7]
=========================== test session starts ============================
platform linux2 -- Python 2.6.5 -- pytest-2.0.0 -- /home/hpk/venv/0/bin/python
platform linux2 -- Python 2.6.6 -- pytest-2.0.1 -- /home/hpk/venv/0/bin/python
collecting ... collected 10 items
test_example.py:6: test_func[7] PASSED