Skip to content

Commit

Permalink
Add py3.7 to .travis matrix (#76)
Browse files Browse the repository at this point in the history
  • Loading branch information
clintval committed Dec 31, 2018
1 parent 5bd474d commit 747e64e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
5 changes: 4 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
language: python
cache: pip
python:
- 3.6
- "3.6"
- "3.7-dev"
before_install:
- sudo rm -f /etc/boto.cfg
install:
- pip install codecov tox-travis
script:
Expand Down
1 change: 0 additions & 1 deletion test-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,3 @@ pytest-cov==2.5.1
pytest-remotedata==0.3.0
pytest-doctestplus==0.1.3
pytest-parallel==0.0.2
pytest-sugar==0.9.1
3 changes: 1 addition & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
minversion = 3.0.0
skip_missing_interpreters = true
envlist =
py36
py36,py37
py36-lint
py36-type
py36-docs
Expand All @@ -14,7 +14,6 @@ commands = pytest {posargs}

[testenv:py36-lint]
description = check the code style
basepython = python3.6
commands =
black --check {toxinidir}
flake8 {toxinidir}/sample_sheet
Expand Down

0 comments on commit 747e64e

Please sign in to comment.