Skip to content

Commit e013361

Browse files
authored
Update .travis.yml
1 parent 5154abb commit e013361

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.travis.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@ matrix:
99
sudo: true
1010
cache: pip
1111
install:
12-
- pip install black
13-
- pip install pycodestyle
12+
- if [[ $TRAVIS_PYTHON_VERSION == 3.6 ]]; pip install black; fi
13+
- if [[ $TRAVIS_PYTHON_VERSION == 3.6 ]]; pip install pycodestyle; fi
1414
- pip install codecov
1515
script:
1616
- echo $STREAM_KEY
1717
- python setup.py test
18-
- black stream_chat
19-
- pycodestyle --ignore=E501,E225,W293 stream_chat
18+
- if [[ $TRAVIS_PYTHON_VERSION == 3.6 ]]; black stream_chat; fi
19+
- if [[ $TRAVIS_PYTHON_VERSION == 3.6 ]]; pycodestyle --ignore=E501,E225,W293 stream_chat; fi
2020
- python setup.py install
2121
after_script:
2222
- "codecov"

0 commit comments

Comments
 (0)