2013-07-25 21:33:43 +08:00
|
|
|
# PYTHON_ARGCOMPLETE_OK
|
2010-11-13 18:10:45 +08:00
|
|
|
"""
|
2012-09-25 17:58:41 +08:00
|
|
|
pytest: unit and functional testing with Python.
|
2010-11-13 18:10:45 +08:00
|
|
|
"""
|
2017-03-16 18:35:00 +08:00
|
|
|
|
|
|
|
|
|
|
|
# else we are imported
|
|
|
|
|
|
|
|
from _pytest.config import (
|
2017-07-31 17:10:29 +08:00
|
|
|
main, UsageError, cmdline,
|
2017-03-16 18:35:00 +08:00
|
|
|
hookspec, hookimpl
|
|
|
|
)
|
|
|
|
from _pytest.fixtures import fixture, yield_fixture
|
|
|
|
from _pytest.assertion import register_assert_rewrite
|
|
|
|
from _pytest.freeze_support import freeze_includes
|
|
|
|
from _pytest import __version__
|
|
|
|
from _pytest.debugging import pytestPDB as __pytestPDB
|
|
|
|
from _pytest.recwarn import warns, deprecated_call
|
2015-09-19 07:03:05 +08:00
|
|
|
from _pytest.outcomes import fail, skip, importorskip, exit, xfail
|
2017-03-21 00:58:34 +08:00
|
|
|
from _pytest.mark import MARK_GEN as mark, param
|
2017-12-17 22:19:01 +08:00
|
|
|
from _pytest.main import Session
|
|
|
|
from _pytest.nodes import Item, Collector, File
|
2017-03-16 18:35:00 +08:00
|
|
|
from _pytest.fixtures import fillfixtures as _fillfuncargs
|
|
|
|
from _pytest.python import (
|
|
|
|
Module, Class, Instance, Function, Generator,
|
|
|
|
)
|
|
|
|
|
2017-06-11 18:27:16 +08:00
|
|
|
from _pytest.python_api import approx, raises
|
2017-06-11 18:15:30 +08:00
|
|
|
|
2017-03-16 18:35:00 +08:00
|
|
|
set_trace = __pytestPDB.set_trace
|
|
|
|
|
2015-07-24 16:05:54 +08:00
|
|
|
__all__ = [
|
|
|
|
'main',
|
|
|
|
'UsageError',
|
|
|
|
'cmdline',
|
|
|
|
'hookspec',
|
|
|
|
'hookimpl',
|
|
|
|
'__version__',
|
2017-02-28 20:34:38 +08:00
|
|
|
'register_assert_rewrite',
|
|
|
|
'freeze_includes',
|
2017-02-28 20:40:38 +08:00
|
|
|
'set_trace',
|
2017-02-28 20:51:29 +08:00
|
|
|
'warns',
|
|
|
|
'deprecated_call',
|
|
|
|
'fixture',
|
2017-02-28 21:09:39 +08:00
|
|
|
'yield_fixture',
|
|
|
|
'fail',
|
|
|
|
'skip',
|
2017-03-01 00:03:23 +08:00
|
|
|
'xfail',
|
2017-02-28 21:09:39 +08:00
|
|
|
'importorskip',
|
|
|
|
'exit',
|
2017-02-28 23:58:29 +08:00
|
|
|
'mark',
|
2017-03-21 00:58:34 +08:00
|
|
|
'param',
|
2017-03-16 18:35:00 +08:00
|
|
|
'approx',
|
2017-03-01 00:41:20 +08:00
|
|
|
'_fillfuncargs',
|
|
|
|
|
|
|
|
'Item',
|
|
|
|
'File',
|
|
|
|
'Collector',
|
|
|
|
'Session',
|
2017-03-16 18:35:00 +08:00
|
|
|
'Module',
|
|
|
|
'Class',
|
|
|
|
'Instance',
|
|
|
|
'Function',
|
|
|
|
'Generator',
|
|
|
|
'raises',
|
2017-03-01 00:41:20 +08:00
|
|
|
|
|
|
|
|
2015-07-24 16:05:54 +08:00
|
|
|
]
|
2010-11-13 18:10:45 +08:00
|
|
|
|
2017-03-16 18:35:00 +08:00
|
|
|
if __name__ == '__main__':
|
|
|
|
# if run as a script or by 'python -m pytest'
|
2012-09-25 17:58:41 +08:00
|
|
|
# we trigger the below "else" condition by the following import
|
|
|
|
import pytest
|
|
|
|
raise SystemExit(pytest.main())
|
2017-03-16 18:35:00 +08:00
|
|
|
else:
|
2013-09-30 19:14:14 +08:00
|
|
|
|
2017-03-16 18:35:00 +08:00
|
|
|
from _pytest.compat import _setup_collect_fakemodule
|
|
|
|
_setup_collect_fakemodule()
|