Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 317f6ab

Browse files
cclaussbusunkim96
authored andcommitted
tox.ini: Look for Python syntax errors and undefined names (googleapis#721)
1 parent 9fdc2b2 commit 317f6ab

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

tox.ini

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,12 @@ deps =
1414
pycrypto==2.6
1515
django<2.0.0; python_version < '3.0.0'
1616
django>=2.0.0; python_version > '3.0.0'
17+
flake8
1718
webtest
1819
nose
1920
coverage>=3.6,<3.99
2021
unittest2
2122
mock
22-
commands = nosetests --with-coverage --cover-package=googleapiclient --nocapture --cover-erase --cover-tests --cover-branches --cover-min-percentage=85 []
23+
commands =
24+
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
25+
nosetests --with-coverage --cover-package=googleapiclient --nocapture --cover-erase --cover-tests --cover-branches --cover-min-percentage=85 []

0 commit comments

Comments
 (0)