这个问题是我在“ 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]
addopts = -v -s -p src.config
filterwarnings = ignore::UserWarning
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语句处停止
到达此处后,我的脚本未运行!为什么会发生这种情况以及如何解决呢?