We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1176df2 commit ba466e9Copy full SHA for ba466e9
1 file changed
.travis.yml
@@ -12,9 +12,10 @@ python:
12
- "pypy3"
13
# command to install dependencies
14
install:
15
+ - imagesize=''
16
- pip install -U coveralls pytest pytest-cov 'coverage<5' codecov
- - if [[ $IMAGESIZE == true ]] ; then pip install -e '.[imagesize]' ; fi
17
- - if [[ $IMAGESIZE == false ]] ; then pip install -e . ; fi
+ - if [[ $IMAGESIZE == true ]] ; then imagesize='[imagesize]' ; fi
18
+ - pip install -e '.${imagesize}'
19
# command to run tests
20
script: py.test
21
after_success:
0 commit comments