1
0
Fork 1
mirror of https://github.com/thatmattlove/hyperglass.git synced 2026-01-17 08:48:05 +00:00

moved check_code to main travis.yml

This commit is contained in:
checktheroads 2019-06-17 01:52:39 -07:00
parent ff24ab1609
commit 8af937be72

View file

@ -11,7 +11,15 @@ install:
before_script:
- pip3 install -r ./tests/requirements_dev.txt
- pip3 install anybadge
- sh ./tests/check_code.sh
- git config --global user.email "travis@travis-ci.org"
- git config --global user.name "Travis CI"
- git checkout master
- black hyperglass
- git add hyperglass/ *.py
- git commit --message "Black Formatting - travis #$TRAVIS_BUILD_NUMBER"
- python3 ./manage.py pylint-badge --integer-only True
- git add pylint.svg
- git commit --message "Pylint Badge - travis #$TRAVIS_BUILD_NUMBER"
- python3 ./tests/ci_prepare.py
script:
- nohup python3 ./tests/ci_dev_server.py &