Skip to content

Commit c664ca5

Browse files
committed
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.
1 parent b4629eb commit c664ca5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ install:
128128
- if [[ $TRAVIS_PYTHON_VERSION != "3.4"* ]]; then pip install mysqlclient; fi
129129
# https://issues.roundup-tracker.org/issue2551267
130130
- if [[ $TRAVIS_PYTHON_VERSION == "3."* ]]; then pip install gpg; fi
131-
- pip install psycopg2
131+
- if [[ $TRAVIS_PYTHON_VERSION == "2."* ]]; then pip install scandir; fi
132132
- pip install redis
133133
- pip install pytz whoosh pyjwt requests
134134
- pip install jinja2

0 commit comments

Comments
 (0)