magic-wormhole/.travis.yml
Brian Warner 31de77a875 travis: py37 should no longer require sudo
(once upon a time, sudo:true was necessary to get onto a GCE instance, which
has xenail which has py37)
2019-02-10 11:08:00 -08:00

36 lines
740 B
YAML

language: python
# defaults: the py3.7 environment overrides these
dist: trusty
sudo: false
cache: pip
before_cache:
- rm -f $HOME/.cache/pip/log/debug.log
branches:
except:
- /^WIP-.*$/
install:
- pip install -U pip tox virtualenv codecov
after_success:
- codecov
matrix:
include:
- python: 2.7
script: tox -e py27-nodilate
- python: 3.4
script: tox -e py34-nodilate
- python: 3.5
script: tox -e py35-coverage
- python: 3.6
script: tox -e py36-coverage
- python: 3.7
dist: xenial
script: tox -e py37-coverage
- python: nightly
script: tox -e py-coverage
- python: 3.6
script: tox -e flake8
env: FLAKE8
allow_failures:
- python: nightly