Skip to content

Commit 95dc904

Browse files
committed
Merge branch 'master' of github.com:GetStream/stream-chat-python
2 parents ad320a8 + 1c2d0a1 commit 95dc904

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 ]]; then pip install black; fi
13+
- if [[ $TRAVIS_PYTHON_VERSION == 3.6 ]]; then 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 ]]; then black stream_chat; fi
19+
- if [[ $TRAVIS_PYTHON_VERSION == 3.6 ]]; then pycodestyle --ignore=E501,E225,W293 stream_chat; fi
2020
- python setup.py install
2121
after_script:
2222
- "codecov"

0 commit comments

Comments
 (0)