In order to reduce warnings I had explicitly defined pytest markers, and following pytest documentation put this in pytest.ini.
I had not realised that some pytest config already existed in tox.ini. This now seems to be ignored, with the result that Jenkins builds fail because a junit report is not generated.
Revert the addition of pytest.ini, and instead add the pytest marker config into the existing tox.ini.
In order to reduce warnings I had explicitly defined pytest markers, and following pytest documentation put this in
pytest.ini
. I had not realised that some pytest config already existed intox.ini
. This now seems to be ignored, with the result that Jenkins builds fail because a junit report is not generated.Revert the addition of
pytest.ini
, and instead add the pytest marker config into the existingtox.ini
.