File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -9,14 +9,14 @@ matrix:
99 sudo : true
1010cache : pip
1111install :
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
1515script :
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
2121after_script :
2222 - " codecov"
You can’t perform that action at this time.
0 commit comments