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-13 16:05:11 +08:00
|
|
|
__version__ = '2.0.0.dev25'
|
2010-10-07 17:59:00 +08:00
|
|
|
|
2010-11-13 16:05:11 +08:00
|
|
|
__all__ = ['cmdline', 'collect', 'main']
|
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-13 16:05:11 +08:00
|
|
|
main = cmdline.main
|