aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Partial back-out of changeset 4b63e7093115Armin Rigo2017-04-051-0/+0
| | | | | | This should cancel the change to ALL FILES that turns them executable. The present backout has been manually tweaked so that it does not actually contain any change to file contents.
* conditionally call vmp_native_enable/disable (only if platform supports it), ↵Richard Plangger2017-04-031-0/+0
| | | | VMP_SUPPORTS_NATIVE_PROFILING defined on x86
* copy upstream pytest-2.9.2 and py-1.4.29Ronan Lamy2016-11-151-2/+2
|
* sync to pytest 2.5.2 and pylib 1.4.20Ronan Lamy2014-04-121-4/+15
|
* upgrade py and _pytest to current tipRonny Pfannschmidt2012-04-091-2/+5
|
* syncronize pylib and pytest with current hg versionsRonny Pfannschmidt2012-01-211-1/+1
|
* remove old py copy, add current pytest and py lib snapshots (from ↵holger krekel2011-01-181-22/+40
| | | | | | pytest-2.0.1dev and py-1.4.1dev) and some initial tweeks to conftest.py
* merge py131 branch (which merges py1.3.1a1 - release pending) relevant news:Holger Krekel2010-05-221-1/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * fixes keyboardinterrupt issues - hopefully strange internal TBs when doing ctrl-c are a thing of the past now * be more robust against bogus source code and fix/improve reporting of failing applevel tests * fix some xfail/skipping issues and introduce a new imperative way to xfail a test by py.test.xfail() # or py.test.xfail("reasonstring") I strongly recommend to use this instead of py.test.skip("xxx") because it more clearly communicates that not just some platform/dependency problem but an implementation issue is present. Note that it is also possible to do: @py.test.mark.xfail def test_function() and with Python2.6 it can also be applied to a test class like this: @py.test.mark.xfail(reason="xyz needs improvement/refactoring") class TestClass: def test_... And btw, you can issue "py.test --runxfail" to still run those tests and see tracebacks. And finally, @py.test.mark.xfail(run=False) def test_function() will not try to run the function at all.
* merge py12 branch - incorporates and updates pypy tests to use py.test-1.3.0Holger Krekel2010-05-061-0/+209
* introduces spaceconfig attribute to specify which space to use for a certain test class. * removes deprecated usage of py.test features * removes internal imports of py lib * various little test functionality related cleanups note: the merging was going odd with svn throwing assertion errors and other issues - so i merged in two steps - hope this worked fine.