try to move docs to a more releasable state, also refine

release announce and a few coding bits
This commit is contained in:
holger krekel
2012-10-09 14:35:17 +02:00
parent 39b8a19cf7
commit fb3af07ef4
26 changed files with 424 additions and 371 deletions
+2 -2
View File
@@ -4,7 +4,7 @@
Support for unittest.TestCase / Integration of fixtures
=====================================================================
py.test has limited support for running Python `unittest.py style`_ tests.
py.test has support for running Python `unittest.py style`_ tests.
It will automatically collect ``unittest.TestCase`` subclasses
and their ``test`` methods in test files. It will invoke
``setUp/tearDown`` methods but also perform py.test's standard ways
@@ -24,7 +24,7 @@ Running it yields::
$ py.test test_unittest.py
=========================== test session starts ============================
platform linux2 -- Python 2.7.3 -- pytest-2.3.0.dev19
platform linux2 -- Python 2.7.3 -- pytest-2.3.0.dev20
collected 1 items
test_unittest.py F