Files
pytest2/pytest/__init__.py
holger krekel 6461295ab4 probably the last major internal cleanup action: rename collection to
session which now is the root collection node.  This means that
session, collection and config objects have a more defined
relationship (previously there was no way to get from a collection
node or even from a runtest hook to the session object which
was strange).
2010-11-07 10:19:58 +01:00

14 lines
291 B
Python

"""
unit and functional testing with Python.
see http://pytest.org for documentation and details
(c) Holger Krekel and others, 2004-2010
"""
__version__ = '2.0.0.dev23'
__all__ = ['config', 'cmdline']
from pytest import main as cmdline
UsageError = cmdline.UsageError
main = cmdline.main