If generatetestsuites option is on, test suites are generated based on test file names.
If generatetestsuites option is on and there is started test in pytest_runtest_logstart - report build problem.
Another flag unmodifiedverbosity is added to stop plugin from modifying verbosity level which is regulated by pytest user. Currently teamcity-messages plugin produces unexpected side effect by modifying verbosity level. E.g. calling pytest --quiet is not quiet due to teamcty reporting. Can move that to a separate PR.
https://github.com/JetBrains/teamcity-messages/issues/251
If
generatetestsuites
option is on, test suites are generated based on test file names. Ifgeneratetestsuites
option is on and there is started test inpytest_runtest_logstart
- report build problem.Another flag
unmodifiedverbosity
is added to stop plugin from modifying verbosity level which is regulated bypytest
user. Currentlyteamcity-messages
plugin produces unexpected side effect by modifying verbosity level. E.g. callingpytest --quiet
is not quiet due to teamcty reporting. Can move that to a separate PR.