2010-10-07 17:59:00 +08:00
|
|
|
"""
|
2010-11-06 06:37:31 +08:00
|
|
|
unit and functional testing with Python.
|
2010-10-12 18:54:32 +08:00
|
|
|
|
|
|
|
see http://pytest.org for documentation and details
|
|
|
|
|
2010-10-07 17:59:00 +08:00
|
|
|
(c) Holger Krekel and others, 2004-2010
|
|
|
|
"""
|
2010-11-07 23:26:44 +08:00
|
|
|
__version__ = '2.0.0.dev24'
|
2010-10-07 17:59:00 +08:00
|
|
|
|
2010-10-12 18:54:32 +08:00
|
|
|
__all__ = ['config', 'cmdline']
|
2010-10-10 19:48:49 +08:00
|
|
|
|
2010-11-06 06:37:31 +08:00
|
|
|
from pytest import main as cmdline
|
2010-10-28 01:35:27 +08:00
|
|
|
UsageError = cmdline.UsageError
|
2010-11-06 16:58:04 +08:00
|
|
|
main = cmdline.main
|