Skip to content

Commit 0d5e393

Browse files
committed
Check Python style using Travis CI
1 parent 7aa2e81 commit 0d5e393

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.travis.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
language: "python"
2+
3+
python:
4+
- "2.7"
5+
- "3.3"
6+
- "3.4"
7+
- "3.5"
8+
- "pypy"
9+
- "pypy3"
10+
11+
install:
12+
- pip install flake8
13+
14+
script:
15+
- flake8 --ignore=W191,F401,E501 .
16+
17+
notifications:
18+
email:
19+
on_success: change
20+
on_failure: always

0 commit comments

Comments
 (0)