在pytest.ini中添加-p app.custom_module后,脚本未运行

时间:2019-07-12 12:16:47

标签: pytest xdist

这个问题是我在“ https://github.com/browsertron/pytest-parallel/issues/35”中提出的问题的跟进。在将动态数据解析为pytest.ini或命令行时,我的时间很糟糕。

NOTE: I have posted the proj struct in the bug and it would be great if somebody can help me

pytest.ini

[pytest]
addopts = -v -s -p src.config
filterwarnings = ignore::UserWarning

config.py

def pytest_cmdline_main(config):
    count = len(config.getoption('--env'))
    print('count: : ', count)
    args = "-n" + str(count)
    print('args is: ', args)
    return args

尝试使用该插件,它恰好在return / yield语句处停止

到达此处后,我的脚本未运行!为什么会发生这种情况以及如何解决呢?

0 个答案:

没有答案