mirror of
https://github.com/beetbox/beets.git
synced 2025-12-28 11:32:30 +01:00
Add Python 3.7 to Tox and Travis
This commit is contained in:
parent
15d44f02a3
commit
66ed015ea0
2 changed files with 4 additions and 1 deletions
|
|
@ -21,6 +21,8 @@ matrix:
|
|||
env: {TOX_ENV: py35-test}
|
||||
- python: 3.6
|
||||
env: {TOX_ENV: py36-test}
|
||||
- python: 3.7
|
||||
env: {TOX_ENV: py37-test}
|
||||
# - python: pypy
|
||||
# - env: {TOX_ENV: pypy-test}
|
||||
- python: 3.4
|
||||
|
|
|
|||
3
tox.ini
3
tox.ini
|
|
@ -4,7 +4,7 @@
|
|||
# and then run "tox" from this directory.
|
||||
|
||||
[tox]
|
||||
envlist = py27-test, py36-test, py27-flake8, docs
|
||||
envlist = py27-test, py37-test, py27-flake8, docs
|
||||
|
||||
# The exhaustive list of environments is:
|
||||
# envlist = py{27,34,35}-{test,cov}, py{27,34,35}-flake8, docs
|
||||
|
|
@ -50,6 +50,7 @@ commands =
|
|||
py34-flake8: flake8 --min-version 3.4 {posargs} {[_flake8]files}
|
||||
py35-flake8: flake8 --min-version 3.5 {posargs} {[_flake8]files}
|
||||
py36-flake8: flake8 --min-version 3.6 {posargs} {[_flake8]files}
|
||||
py37-flake8: flake8 --min-version 3.7 {posargs} {[_flake8]files}
|
||||
|
||||
[testenv:docs]
|
||||
basepython = python2.7
|
||||
|
|
|
|||
Loading…
Reference in a new issue