test_ok1/pytest/__init__.py

15 lines
319 B
Python
Raw Normal View History

"""
py.test / pytest API for 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.dev10'
__all__ = ['config', 'cmdline']
from pytest import _core as cmdline
def __main__():
2010-10-23 21:42:53 +08:00
raise SystemExit(cmdline.main())