We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f3d7363 commit 6f66998Copy full SHA for 6f66998
.travis.yml
@@ -1,7 +1,12 @@
1
language: python
2
python:
3
- - 2.6
4
- - 2.7
5
-install: pip install -r requirements.txt --use-mirrors
6
-script: nosetests --with-doctest
7
-
+ - "2.6"
+ - "2.7"
+install:
+ - pip install pep8 --use-mirrors
+ - pip install https://github.com/dcramer/pyflakes/tarball/master
8
+ - pip install -r requirements.txt --use-mirrors
9
+script:
10
+ - pep8 --exclude=migrations --ignore=E501 rtkit || exit 1
11
+ - pyflakes -x W rtkit || exit 1
12
+ - nosetests --with-doctest
0 commit comments