Travis CI: Check for Python syntax errors and undefined names
Blocked by #1292
This commit is contained in:
parent
8c590fc68f
commit
03ff17242f
1 changed files with 4 additions and 1 deletions
|
|
@ -1,5 +1,4 @@
|
|||
dist: trusty
|
||||
sudo: required
|
||||
|
||||
env:
|
||||
matrix:
|
||||
|
|
@ -18,5 +17,9 @@ before_install:
|
|||
# prepare docker test requirements
|
||||
- make update-dependencies
|
||||
|
||||
before_script:
|
||||
- pip install flake8
|
||||
- flake8 . --count --select=E9,F63,F72,F82 --show-source --statistics
|
||||
|
||||
script:
|
||||
- make $TEST_TARGET
|
||||
|
|
|
|||
Loading…
Reference in a new issue