Я использую Python 3.8 и pytest 6.0.1. Как создать настраиваемый параметр командной строки для pytest? Я думал, что это так же просто, как добавить это в conftest.py ...
def pytest_addoption(parser):
parser.addoption('--option1', action='store_const', const=True)
, но когда я выполняю pytest, я получаю нераспознанную ошибку параметра
# pytest --option1=Y -c tests/my_test.py
ERROR: usage: pytest [options] [file_or_dir] [file_or_dir] [...]
pytest: error: unrecognized arguments: --option1=Y
Какой правильный способ добавить настраиваемый параметр?
Изменить: Я попробовал данный ответ. Я включил некоторые другие вещи в свой файл tests / conftest.py на случай, если это причина того, что ответ не работает. Файл содержит
def pytest_generate_tests(metafunc):
option1value = metafunc.config.getoption("--option1")
print(f'Option1 Value = {option1value}')
def pytest_configure(config):
use_docker = False
try:
use_docker = config.getoption("--docker-compose-remove-volumes")
except:
pass
plugin_name = 'wait_for_docker' if use_docker else 'wait_for_server'
if not config.pluginmanager.has_plugin(plugin_name):
config.pluginmanager.import_plugin("tests.plugins.{}".format(plugin_name))
Но при запуске выводится
$ pytest -s --option1 tests/shared/model/test_crud_functions.py
ERROR: usage: pytest [options] [file_or_dir] [file_or_dir] [...]
pytest: error: unrecognized arguments: --option1
inifile: /Users/davea/Documents/workspace/my_project/pytest.ini
rootdir: /Users/davea/Documents/workspace/my_project