本文整理匯總了Python中pytest.config方法的典型用法代碼示例。如果您正苦於以下問題:Python pytest.config方法的具體用法?Python pytest.config怎麽用?Python pytest.config使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類pytest
的用法示例。
在下文中一共展示了pytest.config方法的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: pytest_configure
# 需要導入模塊: import pytest [as 別名]
# 或者: from pytest import config [as 別名]
def pytest_configure(config):
# Bind a config object to `pytest` module instance
pytest.custom_cmdopt = CustomCommandLineOption()
pytest.custom_cmdopt.add("cpu_only", config.getoption("--cpu_only"))
# Set the random seed so that the tests are reproducible between test runs and
# hopefully torch and numpy versions. This seed should also allow all range tests
# with a starting lr of 1e-5 and an ending lr of 1e-1 to run the full test without
# diverging
seed = 1
random.seed(seed)
os.environ["PYTHONHASHSEED"] = str(seed)
np.random.seed(seed)
torch.manual_seed(seed)
torch.cuda.manual_seed(seed)
torch.backends.cudnn.deterministic = True
示例2: get_cli_param
# 需要導入模塊: import pytest [as 別名]
# 或者: from pytest import config [as 別名]
def get_cli_param(config, name_of_param, default=None):
"""
This is helper function which store cli parameter in RUN section in
cli_params
Args:
config (pytest.config): Pytest config object
name_of_param (str): cli parameter name
default (any): default value of parameter (default: None)
Returns:
any: value of cli parameter or default value
"""
cli_param = config.getoption(name_of_param, default=default)
ocsci_config.RUN['cli_params'][name_of_param] = cli_param
return cli_param
示例3: pytest_collection_modifyitems
# 需要導入模塊: import pytest [as 別名]
# 或者: from pytest import config [as 別名]
def pytest_collection_modifyitems(session, config, items):
"""
Add Polarion ID property to test cases that are marked with one.
"""
for item in items:
try:
marker = item.get_closest_marker(name="polarion_id")
if marker:
polarion_id = marker.args[0]
if polarion_id:
item.user_properties.append(
("polarion-testcase-id", polarion_id)
)
except IndexError:
log.warning(
f"polarion_id marker found with no value for "
f"{item.name} in {item.fspath}",
exc_info=True
)
示例4: check_required_loopback_interfaces_available
# 需要導入模塊: import pytest [as 別名]
# 或者: from pytest import config [as 別名]
def check_required_loopback_interfaces_available():
"""
We need at least 3 loopback interfaces configured to run almost all dtests. On Linux, loopback
interfaces are automatically created as they are used, but on Mac they need to be explicitly
created. Check if we're running on Mac (Darwin), and if so check we have at least 3 loopback
interfaces available, otherwise bail out so we don't run the tests in a known bad config and
give the user some helpful advice on how to get their machine into a good known config
"""
if platform.system() == "Darwin":
if len(ni.ifaddresses('lo0')[AF_INET]) < 9:
pytest.exit("At least 9 loopback interfaces are required to run dtests. "
"On Mac you can create the required loopback interfaces by running "
"'for i in {1..9}; do sudo ifconfig lo0 alias 127.0.0.$i up; done;'")
示例5: log_global_env_facts
# 需要導入模塊: import pytest [as 別名]
# 或者: from pytest import config [as 別名]
def log_global_env_facts(fixture_dtest_config, fixture_logging_setup):
if pytest.config.pluginmanager.hasplugin('junitxml'):
my_junit = getattr(pytest.config, '_xml', None)
my_junit.add_global_property('USE_VNODES', fixture_dtest_config.use_vnodes)
示例6: fixture_maybe_skip_tests_requiring_novnodes
# 需要導入模塊: import pytest [as 別名]
# 或者: from pytest import config [as 別名]
def fixture_maybe_skip_tests_requiring_novnodes(request):
"""
Fixture run before the start of every test function that checks if the test is marked with
the no_vnodes annotation but the tests were started with a configuration that
has vnodes enabled. This should always be a no-op as we explicitly deselect tests
in pytest_collection_modifyitems that match this configuration -- but this is explicit :)
"""
if request.node.get_closest_marker('no_vnodes'):
if request.config.getoption("--use-vnodes"):
pytest.skip("Skipping test marked with no_vnodes as tests executed with vnodes enabled via the "
"--use-vnodes command line argument")
示例7: _upgrade_testing_enabled
# 需要導入模塊: import pytest [as 別名]
# 或者: from pytest import config [as 別名]
def _upgrade_testing_enabled(config):
return config.getoption("--execute-upgrade-tests") or config.getoption("--execute-upgrade-tests-only")
示例8: is_master
# 需要導入模塊: import pytest [as 別名]
# 或者: from pytest import config [as 別名]
def is_master(config):
"""
Validate slaveinput attribute.
True if the code running the given pytest.config object
is running in a xdist master node or not running xdist at all.
"""
return not hasattr(config, 'slaveinput')
示例9: pytest_configure_node
# 需要導入模塊: import pytest [as 別名]
# 或者: from pytest import config [as 別名]
def pytest_configure_node(node):
"""
Configure node of tests.
:param node: _pytest.nodes.Node
:return: pickle of RPService
"""
if node.config._reportportal_configured is False:
# Stop now if the plugin is not properly configured
return
node.slaveinput['py_test_service'] = pickle.dumps(node.config.
py_test_service)
示例10: pytest_sessionstart
# 需要導入模塊: import pytest [as 別名]
# 或者: from pytest import config [as 別名]
def pytest_sessionstart(session):
"""
Start test session.
:param session: Session
:return: None
"""
if session.config._reportportal_configured is False:
# Stop now if the plugin is not properly configured
return
if is_master(session.config):
session.config.py_test_service.init_service(
project=session.config.getini('rp_project'),
endpoint=session.config.getini('rp_endpoint'),
uuid=getenv('RP_UUID') or session.config.getini('rp_uuid'),
log_batch_size=int(session.config.getini('rp_log_batch_size')),
ignore_errors=bool(session.config.getini('rp_ignore_errors')),
ignored_attributes=session.config.getini('rp_ignore_attributes'),
verify_ssl=session.config.getini('rp_verify_ssl'),
retries=int(session.config.getini('retries')),
)
attributes = [{'value': tag} for tag in
session.config.getini('rp_launch_attributes')]
session.config.py_test_service.start_launch(
session.config.option.rp_launch,
attributes=attributes,
description=session.config.option.rp_launch_description
)
if session.config.pluginmanager.hasplugin('xdist'):
wait_launch(session.config.py_test_service.rp)
示例11: pytest_collection_finish
# 需要導入模塊: import pytest [as 別名]
# 或者: from pytest import config [as 別名]
def pytest_collection_finish(session):
"""
Collect tests if session is configured.
:param session: pytest.Session
:return: None
"""
if session.config._reportportal_configured is False:
# Stop now if the plugin is not properly configured
return
session.config.py_test_service.collect_tests(session)
示例12: pytest_sessionfinish
# 需要導入模塊: import pytest [as 別名]
# 或者: from pytest import config [as 別名]
def pytest_sessionfinish(session):
"""
Finish session if has attr 'slaveinput'.
:param session: pytest.Session
:return: None
"""
if session.config._reportportal_configured is False:
# Stop now if the plugin is not properly configured
return
if is_master(session.config):
session.config.py_test_service.finish_launch()
示例13: _get_option
# 需要導入模塊: import pytest [as 別名]
# 或者: from pytest import config [as 別名]
def _get_option(config, key):
return config.getoption(key) or config.inicfg.get(key)
示例14: hana_system
# 需要導入模塊: import pytest [as 別名]
# 或者: from pytest import config [as 別名]
def hana_system():
host = _get_option(pytest.config, 'hana_host')
port = _get_option(pytest.config, 'hana_port') or 30015
user = _get_option(pytest.config, 'hana_user')
password = _get_option(pytest.config, 'hana_password')
return HANASystem(host, port, user, password)
示例15: pytest_configure
# 需要導入模塊: import pytest [as 別名]
# 或者: from pytest import config [as 別名]
def pytest_configure(config):
config.addinivalue_line(
"markers",
"hanatest: mark test to run only with SAP HANA system"
)