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 e5ff4ea commit d0258f1Copy full SHA for d0258f1
.gitignore
@@ -97,3 +97,6 @@ ENV/
97
98
# Rope project settings
99
.ropeproject
100
+
101
+# Mac stuff
102
+.DS_Store
.travis.yml
@@ -16,6 +16,10 @@ before_install:
16
# command to install dependencies
17
install:
18
- pip install -r requirements.txt
19
+ - pip install flake8 pytest
20
- python setup.py install
-# command to run tests
21
-script: python test/test_load_module.py -v
+# 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