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 (
|
|
|
|
main, UsageError, _preloadplugins, cmdline,
|
|
|
|
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
|
|
|
|
from _pytest.runner import fail, skip, importorskip, exit
|
|
|
|
from _pytest.mark import MARK_GEN as mark
|
|
|
|
from _pytest.skipping import xfail
|
|
|
|
from _pytest.main import Item, Collector, File, Session
|
|
|
|
from _pytest.fixtures import fillfixtures as _fillfuncargs
|
|
|
|
from _pytest.python import (
|
|
|
|
raises, approx,
|
|
|
|
Module, Class, Instance, Function, Generator,
|
|
|
|
)
|
|
|
|
|
|
|
|
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-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
|
|
|
|
_preloadplugins() # to populate pytest.* namespace so help(pytest) works
|
|
|
|
_setup_collect_fakemodule()
|