Skip to content

Commit

Permalink
Merge 8af3c7e into 31012b9
Browse files Browse the repository at this point in the history
  • Loading branch information
cclauss committed Mar 8, 2017
2 parents 31012b9 + 8af3c7e commit 9dcdb7c
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 3 deletions.
15 changes: 14 additions & 1 deletion .travis.yml
@@ -1,11 +1,24 @@
language: python
python:
- "3.5"
- "3.6"
- "nightly" # currently points to 3.7-dev

before_install:
- pip install --upgrade pip setuptools
- pip install flake8

install:
- pip install -r requirements.txt
- pip install tox
- pip install coveralls

before_script:
- flake8 . --count --statistics --exit-zero

# command to run tests
script:
- tox
after_success: coveralls
- flake8 . --count --select=E999 # E999 SyntaxError: invalid syntax

after_success: coveralls
3 changes: 1 addition & 2 deletions tox.ini
@@ -1,7 +1,6 @@
[tox]
envlist =
py344,
py35,
py36,
coverage,
#flake8

Expand Down

0 comments on commit 9dcdb7c

Please sign in to comment.