diff options
author | holger krekel <holger@merlinux.eu> | 2011-03-19 20:15:53 +0100 |
---|---|---|
committer | holger krekel <holger@merlinux.eu> | 2011-03-19 20:15:53 +0100 |
commit | fed654edf9113c94c7aeebee7128d70d1c0b22db (patch) | |
tree | 3bf963126d2bfa3d77c58e498f80c63378087a05 /pytest.py | |
parent | inline testrunner (diff) | |
download | pypy-fed654edf9113c94c7aeebee7128d70d1c0b22db.tar.gz pypy-fed654edf9113c94c7aeebee7128d70d1c0b22db.tar.bz2 pypy-fed654edf9113c94c7aeebee7128d70d1c0b22db.zip |
update to pytest-2.0.3.dev3, containing few fixes/speedups
Diffstat (limited to 'pytest.py')
-rw-r--r-- | pytest.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3,11 +3,11 @@ unit and functional testing with Python. (pypy version of startup script) see http://pytest.org for details. """ -__version__ = '2.0.3.dev1' # base pytest version __all__ = ['main'] from _pytest.core import main, UsageError, _preloadplugins from _pytest import core as cmdline +from _pytest import __version__ # This pytest.py script is located in the pypy source tree # which has a copy of pytest and py within its source tree. |