improve example for pytest integration with "python setup.py test"

which now has a generic "-a" or "--pytest-args" option where you
can pass additional options as a quoted string.  Thanks Trevor Bekolay.
This commit is contained in:
holger krekel 2014-05-19 20:32:09 +02:00
parent d853e9167a
commit 040062e40c
2 changed files with 5 additions and 0 deletions

View File

@ -42,3 +42,4 @@ Marc Schlaich
Christopher Gilling
Daniel Grana
Andy Freeland
Trevor Bekolay

View File

@ -57,6 +57,10 @@ NEXT (2.6)
- fix issue483: trial/py33 works now properly. Thanks Daniel Grana for PR.
- improve example for pytest integration with "python setup.py test"
which now has a generic "-a" or "--pytest-args" option where you
can pass additional options as a quoted string. Thanks Trevor Bekolay.
- simplified internal capturing mechanism and made it more robust
against tests or setups changing FD1/FD2, also better integrated
now with pytest.pdb() in single tests.