test_ok2/pytest/__init__.py

14 lines
291 B
Python
Raw Normal View History

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