We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ad320a8 + 1c2d0a1 commit 95dc904Copy full SHA for 95dc904
.travis.yml
@@ -9,14 +9,14 @@ matrix:
9
sudo: true
10
cache: pip
11
install:
12
- - pip install black
13
- - pip install pycodestyle
+ - if [[ $TRAVIS_PYTHON_VERSION == 3.6 ]]; then pip install black; fi
+ - if [[ $TRAVIS_PYTHON_VERSION == 3.6 ]]; then pip install pycodestyle; fi
14
- pip install codecov
15
script:
16
- echo $STREAM_KEY
17
- python setup.py test
18
- - black stream_chat
19
- - pycodestyle --ignore=E501,E225,W293 stream_chat
+ - if [[ $TRAVIS_PYTHON_VERSION == 3.6 ]]; then black stream_chat; fi
+ - if [[ $TRAVIS_PYTHON_VERSION == 3.6 ]]; then pycodestyle --ignore=E501,E225,W293 stream_chat; fi
20
- python setup.py install
21
after_script:
22
- "codecov"
0 commit comments