Skip to content

Commit 1c2d0a1

Browse files
authored
fix bash
1 parent e013361 commit 1c2d0a1

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-
- if [[ $TRAVIS_PYTHON_VERSION == 3.6 ]]; pip install black; fi
13-
- if [[ $TRAVIS_PYTHON_VERSION == 3.6 ]]; pip install pycodestyle; fi
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-
- 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
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)