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
|
|
|
|
|
2018-05-23 22:48:46 +08:00
|
|
|
from _pytest.config import main, UsageError, cmdline, hookspec, hookimpl
|
2017-03-16 18:35:00 +08:00
|
|
|
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
|
2018-07-06 05:15:17 +08:00
|
|
|
from _pytest.python import Package, Module, Class, Instance, Function, Generator
|
2017-06-11 18:27:16 +08:00
|
|
|
from _pytest.python_api import approx, raises
|
2018-09-04 00:36:12 +08:00
|
|
|
from _pytest.warning_types import (
|
|
|
|
PytestWarning,
|
|
|
|
PytestDeprecationWarning,
|
|
|
|
RemovedInPytest4Warning,
|
2018-09-04 21:48:11 +08:00
|
|
|
PytestExerimentalApiWarning,
|
2018-09-04 00:36:12 +08:00
|
|
|
)
|
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__ = [
|
2018-05-23 22:48:46 +08:00
|
|
|
"__version__",
|
2018-09-04 00:14:57 +08:00
|
|
|
"_fillfuncargs",
|
|
|
|
"approx",
|
|
|
|
"Class",
|
|
|
|
"cmdline",
|
|
|
|
"Collector",
|
2018-05-23 22:48:46 +08:00
|
|
|
"deprecated_call",
|
|
|
|
"exit",
|
2018-09-04 00:14:57 +08:00
|
|
|
"fail",
|
2018-05-23 22:48:46 +08:00
|
|
|
"File",
|
2018-09-04 00:14:57 +08:00
|
|
|
"fixture",
|
|
|
|
"freeze_includes",
|
2018-05-23 22:48:46 +08:00
|
|
|
"Function",
|
|
|
|
"Generator",
|
2018-09-04 00:14:57 +08:00
|
|
|
"hookimpl",
|
|
|
|
"hookspec",
|
|
|
|
"importorskip",
|
|
|
|
"Instance",
|
|
|
|
"Item",
|
|
|
|
"main",
|
|
|
|
"mark",
|
|
|
|
"Module",
|
|
|
|
"Package",
|
|
|
|
"param",
|
2018-09-04 00:36:12 +08:00
|
|
|
"PytestDeprecationWarning",
|
2018-09-04 21:48:11 +08:00
|
|
|
"PytestExerimentalApiWarning",
|
|
|
|
"PytestWarning",
|
2018-05-23 22:48:46 +08:00
|
|
|
"raises",
|
2018-09-04 00:14:57 +08:00
|
|
|
"register_assert_rewrite",
|
|
|
|
"RemovedInPytest4Warning",
|
|
|
|
"Session",
|
|
|
|
"set_trace",
|
|
|
|
"skip",
|
|
|
|
"UsageError",
|
|
|
|
"warns",
|
|
|
|
"xfail",
|
|
|
|
"yield_fixture",
|
2015-07-24 16:05:54 +08:00
|
|
|
]
|
2010-11-13 18:10:45 +08:00
|
|
|
|
2018-05-23 22:48:46 +08:00
|
|
|
if __name__ == "__main__":
|
2017-03-16 18:35:00 +08:00
|
|
|
# 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
|
2018-05-23 22:48:46 +08:00
|
|
|
|
2012-09-25 17:58:41 +08:00
|
|
|
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
|
2018-05-23 22:48:46 +08:00
|
|
|
|
2017-03-16 18:35:00 +08:00
|
|
|
_setup_collect_fakemodule()
|