Home
last modified time | relevance | path

Searched full:pytest_args (Results 1 – 13 of 13) sorted by relevance

/Zephyr-latest/tests/net/socket/tls_configurations/
Dtestcase.yaml18 pytest_args: ["--server-type", "1.2-rsa", "--port", "4000"]
26 pytest_args: ["--server-type", "1.2-ec", "--port", "4001"]
34 pytest_args: ["--server-type", "1.3-ephemeral", "--port", "4002"]
43 pytest_args: ["--server-type", "1.3-ephemeral-tickets", "--port", "4003"]
52 pytest_args: ["--server-type", "1.3-psk-tickets", "--port", "4004"]
/Zephyr-latest/scripts/tests/twister/pytest_integration/
Dtest_harness_pytest.py30 testinstance.handler.options.pytest_args = None
68 pytest_args = ['-k test1', '-m mark1']
69 testinstance.testsuite.harness_config['pytest_args'] = pytest_args
72 for c in pytest_args:
89 testinstance.testsuite.harness_config['pytest_args'] = [pytest_args_from_yaml]
90 testinstance.handler.options.pytest_args = pytest_args_from_cmd
/Zephyr-latest/tests/subsys/debug/gdbstub/
Dtestcase.yaml29 pytest_args:
53 pytest_args:
/Zephyr-latest/scripts/tests/twister_blackbox/test_data/tests/pytest/
Dtest_data.yaml7 pytest_args: ["--custom-pytest-arg", "foo", "--cmdopt", "."]
/Zephyr-latest/samples/subsys/testsuite/pytest/basic/
Dtestcase.yaml7 pytest_args: ["--custom-pytest-arg", "foo", "--cmdopt", "."]
/Zephyr-latest/tests/subsys/logging/dictionary/
Dtestcase.yaml31 pytest_args:
/Zephyr-latest/tests/kernel/timer/timer_behavior/
Dtestcase.yaml19 pytest_args: ['--tool', 'saleae_logic2', '--tool-options',
DREADME58 "harness_config/pytest_args" from "kernel.timer.timer_behavior_external" must
/Zephyr-latest/doc/develop/test/
Dpytest.rst88 #. From .yaml file, using ``pytest_args`` placed under ``harness_config`` section - more info
89 :ref:`here <pytest_args>`.
268 ). It can be applied by adding ``-k`` filter in ``pytest_args`` in .yaml file:
274 pytest_args:
Dtwister.rst681 pytest_args: <list of arguments> (default empty)
683 ``pytest_args: [‘-k=test_method’, ‘--log-level=DEBUG’]``. Note that
/Zephyr-latest/scripts/schemas/twister/
Dtestsuite-schema.yaml119 "pytest_args":
/Zephyr-latest/scripts/pylib/twister/twisterlib/
Dharness.py383 pytest_args_yaml = config.get('pytest_args', []) if config else []
434 if handler.options.pytest_args:
435 command.extend(handler.options.pytest_args)
Denvironment.py275 will extend the pytest_args from the harness_config in YAML file.