Ronny Pfannschmidt
|
bf5b226474
|
fix issue 188 - ensure sys.exc_info on py2 is clear before calling into a test
|
2012-09-15 15:20:49 +02:00 |
holger krekel
|
227d847216
|
fix problem with unicode in writing failure representations to terminal, thanks ThomasWaldmann
|
2012-06-24 16:42:31 +02:00 |
Ronny Pfannschmidt
|
5263656df6
|
kwarg support for reports, so xdist can deserialized extended reports
|
2012-01-20 19:50:45 +01:00 |
holger krekel
|
fa6d5bd15b
|
work around an apparent python2.4/python2.5 bug with subprocess.Popen,
causing jenkins failures. Apparently "os.environ.popitem(name, None)"
is not the same as::
try:
del os.environ[name]
except KeyError:
pass
|
2011-12-28 15:49:13 +00:00 |
holger krekel
|
e21202b730
|
fix Jenkins test failures
|
2011-12-27 21:03:15 +00:00 |
holger krekel
|
c4fe622b82
|
fix issue93 - avoid "delayed" teardowns for distributed testing by
simplifying handling of teardowns.
|
2011-12-02 21:00:19 +00:00 |
holger krekel
|
a5e7b2760d
|
fix issue90 - perform teardown after its actual test function/item. This is implemented by modifying the runtestprotocol to remember "pending" teardowns and call them before the setup of the next item.
|
2011-11-18 16:01:29 +00:00 |
holger krekel
|
539f828cdd
|
also accept non-pytrace pytest.fail() call in setup/teardown methods
|
2010-11-24 16:43:55 +01:00 |
holger krekel
|
695bffc83d
|
refine unittest support to also work with twisted trial test cases better by
introducing a slightly hackish way to report a failure upstream
|
2010-11-23 15:42:23 +01:00 |
holger krekel
|
a698465487
|
streamline docs, especially use "import pytest" and "pytest.*" in python code examples instead of "import py" and "py.test.*".
|
2010-11-17 22:12:16 +01:00 |
holger krekel
|
82ba645a2e
|
fix skip reporting over distributed testing. if we have a "skip" report
rep.longrepr will now be a 3-tuple (path, lineno, message)
|
2010-11-13 21:03:28 +01:00 |
holger krekel
|
076e03e90f
|
also un-nest test directory
|
2010-11-13 11:30:40 +01:00 |