Go to file
holger krekel bd5a9ba392 fix: mark.* objects are now immutable as long as they are not an attribute on a function, enables usage like this::
xfail = pytest.mark.xfail

    @xfail
    def test_func1():
        pass

    @xfail(reason="123")
    def test_func2():
        pass

where previously test_func1 and test_func2 would wrongly share the same reason
because the xfail object was modified in place.
2010-11-20 20:17:38 +01:00
_pytest fix: mark.* objects are now immutable as long as they are not an attribute on a function, enables usage like this:: 2010-11-20 20:17:38 +01:00
bench fix bare "py.test" runs without a directory by not defaulting to --doctest-modules which will virtually import everything 2010-11-18 15:19:20 +01:00
doc refine release announcement 2010-11-18 18:42:33 +01:00
example some pep8 fixes 2010-11-13 23:33:50 +01:00
testing fix: mark.* objects are now immutable as long as they are not an attribute on a function, enables usage like this:: 2010-11-20 20:17:38 +01:00
.hgignore fix tox.ini and dependencies, various fixes all around, tests pass. 2010-10-10 13:48:49 +02:00
.hgtags Added tag 1.3.4 for changeset 90fffd35373e 2010-09-14 17:35:17 +02:00
AUTHORS remove the --junitxmlprefix feature - it's kind of YAGNI i guess - 2010-07-03 14:44:47 +02:00
CHANGELOG fix: mark.* objects are now immutable as long as they are not an attribute on a function, enables usage like this:: 2010-11-20 20:17:38 +01:00
ISSUES.txt update issues 2010-11-05 23:37:31 +01:00
LICENSE * use the MIT license for the py lib 2009-10-03 01:11:04 +02:00
MANIFEST.in some fixes to packaging and urls 2010-10-15 00:54:25 +02:00
README.txt bump version, fix readme 2010-10-21 12:18:10 +02:00
distribute_setup.py massive documentation refinements 2010-11-02 00:53:53 +01:00
pytest.py add ability to use scope="class" in request.cached_setup() calls 2010-11-20 18:03:18 +01:00
setup.py add ability to use scope="class" in request.cached_setup() calls 2010-11-20 18:03:18 +01:00
tox.ini better deal with importing conftest.py with --doctest-modules and 2010-11-18 15:31:58 +01:00

README.txt

py.test is a simple and popular testing tool for Python.

See http://pytest.org for more documentation.