jenkins-bot has submitted this change and it was merged. ( https://gerrit.wikimedia.org/r/606722 )
Change subject: [bugfix] Make Travis update pytest ......................................................................
[bugfix] Make Travis update pytest
Travis has got pytest pre-installed. It has a valid version per our dev-requirements.txt, so pip doesn't update it. But pytest-cov requires pytest >= 4.6, which produces version conflict.
Either we can force Travis to update pytest, or we can force Travis to reinstall it.
Bug: T255349 Change-Id: Ic3127b68d03ca563a674dae8b0d8828926ae24e4 --- M .travis.yml 1 file changed, 2 insertions(+), 0 deletions(-)
Approvals: Xqt: Looks good to me, approved jenkins-bot: Verified
diff --git a/.travis.yml b/.travis.yml index fbac64c..c38352b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -47,6 +47,8 @@
before_script: - pip install -U setuptools + # Make Travis reinstall default pytest (T255349) + - pip uninstall pytest - pip install -r dev-requirements.txt
script:
pywikibot-commits@lists.wikimedia.org