Mercurial > p > roundup > code
diff .travis.yml @ 8090:4d6c817f709b
chore: install scandir on python 2
Install scandir on python2 to allow CI to continue until I get further
along in removing python2 code. Otherwise the coverage numbers drop
when python2 only code is not used.
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Tue, 16 Jul 2024 01:33:18 -0400 |
| parents | 3de80157606c |
| children | 8c17d0def3f3 |
line wrap: on
line diff
--- a/.travis.yml Tue Jul 16 01:28:15 2024 -0400 +++ b/.travis.yml Tue Jul 16 01:33:18 2024 -0400 @@ -128,7 +128,7 @@ - if [[ $TRAVIS_PYTHON_VERSION != "3.4"* ]]; then pip install mysqlclient; fi # https://issues.roundup-tracker.org/issue2551267 - if [[ $TRAVIS_PYTHON_VERSION == "3."* ]]; then pip install gpg; fi - - pip install psycopg2 + - if [[ $TRAVIS_PYTHON_VERSION == "2."* ]]; then pip install scandir; fi - pip install redis - pip install pytz whoosh pyjwt requests - pip install jinja2
