Skip to content

Commit

Permalink
Python 3.7 release
Browse files Browse the repository at this point in the history
- add Python 3.8 dev tests as failure allowed
- Python 3.7 tests are no longer allowed to fail
  • Loading branch information
gaborbernat committed Jul 3, 2018
1 parent a295f57 commit b8368d3
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 28 deletions.
58 changes: 34 additions & 24 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,42 +1,52 @@
group: travis_latest
sudo: false
language: python
cache: pip
python:
- 2.7
- 3.4
- 3.5
- 3.6
- 3.7-dev
- nightly
- pypy
env:
TOXENV=py
jobs:
include:
- python: 2.7 # 2.7.14 pip 9.0.1
- python: 3.4 # 3.4.6 pip 9.0.1
- python: 3.5 # 3.5.5 pip 9.0.1
- python: 3.6 # 3.6.3 pip 9.0.1
- python: 3.7 # 3.7.0 pip 10.0.1
dist: xenial
sudo: true
- python: 3.8-dev
dist: xenial
sudo: true
- python: nightly
dist: xenial
sudo: true
- python: pypy # 2.7.13 pip 9.0.1
- python: pypy3 # 3.5.3 pip 9.0.1
- os: osx
language: generic
- python: 3.7
dist: xenial
sudo: true
env: TOXENV=docs
- python: 3.6
env: TOXENV=fix-lint

matrix:
fast_finish: true
allow_failures:
- os: osx
- python: 3.7-dev
- python: 3.8-dev
- python: nightly
- python: pypy
include:
- python: 3.6
env: TOXENV=docs
- python: 3.6
env: TOXENV=fix-lint
- os: osx
language: generic
- python: pypy3

before_install:
- pyenv versions
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then source .travis-osx; fi
- pyenv versions
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then source .travis-osx; fi

install:
- pip install -U six
- pip install --pre -U tox
- pip install -U six
- pip install --pre -U tox

script:
- tox
- tox

after_success:
- if [[ $TOXENV == "py" ]]; then tox -e coverage,codecov; fi
- if [[ $TOXENV == "py" ]]; then tox -e coverage,codecov; fi
9 changes: 5 additions & 4 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ envlist = py27,
py34,
py35,
py36,
py37,
pypy,
coverage,
fix-lint,
Expand All @@ -22,7 +23,7 @@ commands = pytest {posargs:--cov="{envsitepackagesdir}/tox" --cov-config="{toxin

[testenv:docs]
description = invoke sphinx-build to build the HTML docs and check that all links are valid
basepython = python3.6
basepython = python3.7
extras = docs
changedir = {toxinidir}
commands = sphinx-build -d "{toxworkdir}/docs_doctree" doc "{toxworkdir}/docs_out" --color -W -bhtml {posargs}
Expand Down Expand Up @@ -71,11 +72,11 @@ commands = codecov --file "{toxworkdir}/coverage.xml"
[testenv:exit_code]
# to see how the InvocationError is displayed, use
# PYTHONPATH=.:$PYTHONPATH python3 -m tox -e exit_code
basepython = python3.6
basepython = python3.7
description = commands with several exit codes
skip_install = True
changedir = {toxinidir}
commands = python3.6 -c "import sys; sys.exit(139)"
commands = python3.7 -c "import sys; sys.exit(139)"

[testenv:pra]
platform = linux
Expand All @@ -95,7 +96,7 @@ description = generate a DEV environment
extras = testing, docs
# required to make looponfail reload on every source code change
usedevelop = True
basepython = python3.6
basepython = python3.7
changedir = {toxinidir}
commands = python -m pip list --format=columns
python -c 'import sys; print(sys.executable)'
Expand Down

0 comments on commit b8368d3

Please sign in to comment.