Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upTravis CI: 'sudo' tag is now deprecated in Travis #825
Conversation
[Travis are now recommending removing the __sudo__ tag](https://blog.travis-ci.com/2018-11-19-required-linux-infrastructure-migration).
@@ -9,10 +9,8 @@ matrix: | |||
include: | |||
- python: 3.7 | |||
dist: xenial |
jeking3
Jan 16, 2019
Contributor
You might be able to move dist: xenial
out one level and define it globally. If so, you can move the python declarations out to the global list and eliminate the matrix include section all together.
You might be able to move dist: xenial
out one level and define it globally. If so, you can move the python declarations out to the global list and eliminate the matrix include section all together.
cclauss
Jan 17, 2019
•
Author
Contributor
I can confirm that both solutions work. While xenial is generally available, it is not the Travis default distro so I usually take the more conservative route of only using it where it is needed.
I can confirm that both solutions work. While xenial is generally available, it is not the Travis default distro so I usually take the more conservative route of only using it where it is needed.
cclauss
Jan 21, 2019
•
Author
Contributor
#831 eliminates one test when run on xenial so I think it is best to run more tests on Pythons that are compatible with the Travis CI default distro and fewer tests only on Python 3.7 and nightly.
#831 eliminates one test when run on xenial so I think it is best to run more tests on Pythons that are compatible with the Travis CI default distro and fewer tests only on Python 3.7 and nightly.
Codecov Report
@@ Coverage Diff @@
## master #825 +/- ##
==========================================
- Coverage 94.79% 94.67% -0.12%
==========================================
Files 59 59
Lines 9600 9386 -214
==========================================
- Hits 9100 8886 -214
Misses 500 500
Continue to review full report at Codecov.
|
Travis are now recommending removing the sudo tag.