Skip to content

Commit d0258f1

Browse files
committed
add flake8 to travis + misc
1 parent e5ff4ea commit d0258f1

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,3 +97,6 @@ ENV/
9797

9898
# Rope project settings
9999
.ropeproject
100+
101+
# Mac stuff
102+
.DS_Store

.travis.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,10 @@ before_install:
1616
# command to install dependencies
1717
install:
1818
- pip install -r requirements.txt
19+
- pip install flake8 pytest
1920
- python setup.py install
20-
# command to run tests
21-
script: python test/test_load_module.py -v
21+
# command to run tests + check syntax style
22+
script:
23+
- python test/test_load_module.py -v
24+
- flake8 .
25+
- py.test ot test

0 commit comments

Comments
 (0)