Update .travis.yml
This commit is contained in:
parent
bdc7c4a070
commit
8d19ef99c7
11
.travis.yml
11
.travis.yml
@ -6,4 +6,13 @@ addons:
|
|||||||
update: true
|
update: true
|
||||||
packages: shellcheck
|
packages: shellcheck
|
||||||
|
|
||||||
script: "for file in $(find . -type f -name \"*.sh\"); do shellcheck --format=gcc $file; done;"
|
install:
|
||||||
|
- pip install -U pip
|
||||||
|
- pip install -U flake8
|
||||||
|
- if [[ $TRAVIS_PYTHON_VERSION == 3.6 ]]; then pip install -U black; fi
|
||||||
|
|
||||||
|
script:
|
||||||
|
- for file in $(find . -type f -name \"*.sh\"); do shellcheck --format=gcc $file; done;
|
||||||
|
- cd benchmark/data
|
||||||
|
- flake8 --statistics --count
|
||||||
|
- if [[ $TRAVIS_PYTHON_VERSION == 3.6 ]]; then black --check --diff .; fi
|
||||||
|
Loading…
Reference in New Issue
Block a user