We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 93aa824 commit ec1b504Copy full SHA for ec1b504
.travis.yml
@@ -10,4 +10,5 @@ before_install:
10
install:
11
- pip install -r requirements-test.txt
12
script:
13
- - make test
+ - find . -type f -name \*.py -exec flake8 {} \;
14
+ - python setup.py test
Makefile
@@ -1,8 +1,7 @@
1
.phony: test
2
3
test:
4
- find . | grep '\.py$$' | xargs pep8
5
- find . | grep '\.py$$' | xargs pyflakes
+ find . -type f -name \*.py -exec flake8 {} \;
6
nosetests -v goftests
7
@echo '------------'
8
@echo 'PASSED TESTS'
requirements-test.txt
@@ -1,4 +1,3 @@
-r requirements.txt
-pep8
-pyflakes
nose
+flake8
0 commit comments