2019-08-05 19:22:18 +00:00
|
|
|
# vim ft=yaml
|
|
|
|
|
|
|
|
# After changing this file, check it on:
|
|
|
|
# http://yaml-online-parser.appspot.com/
|
|
|
|
|
|
|
|
# See doc/travis_notes.txt for some guidelines
|
|
|
|
|
|
|
|
# this file is *not* meant to cover or endorse the use of travis, but rather to
|
|
|
|
# help confirm pull requests to this project.
|
|
|
|
|
|
|
|
env:
|
|
|
|
global:
|
|
|
|
- DISPLAY=""
|
|
|
|
|
2019-07-25 01:09:36 +00:00
|
|
|
language: python
|
2019-08-05 19:22:18 +00:00
|
|
|
|
|
|
|
matrix:
|
|
|
|
include:
|
2019-09-05 19:08:19 +00:00
|
|
|
- os: linux
|
|
|
|
dist: xenial # Ubuntu 16.04
|
|
|
|
python: 3.6
|
|
|
|
env: TOXENV=py36
|
|
|
|
- os: linux
|
|
|
|
dist: bionic # Ubuntu 18.04
|
|
|
|
python: 3.6
|
2019-08-05 19:22:18 +00:00
|
|
|
env: TOXENV=py36
|
2019-09-05 19:08:19 +00:00
|
|
|
- os: linux
|
|
|
|
dist: bionic # Ubuntu 18.04
|
|
|
|
python: 3.7
|
2019-08-05 19:22:18 +00:00
|
|
|
env: TOXENV=py37
|
2019-09-05 19:08:19 +00:00
|
|
|
- os: osx
|
|
|
|
osx_image: xcode9.4
|
|
|
|
language: generic
|
|
|
|
env: TOXENV=py36
|
|
|
|
addons:
|
|
|
|
homebrew:
|
|
|
|
# update: true
|
2019-10-20 15:03:16 +00:00
|
|
|
packages: python3.6
|
2019-09-05 19:08:19 +00:00
|
|
|
before_install:
|
|
|
|
- pip3 install virtualenv
|
|
|
|
- virtualenv -p python3 ~/venv
|
|
|
|
- source ~/venv/bin/activate
|
|
|
|
# - os: windows
|
|
|
|
# language: minimal
|
|
|
|
# before_install:
|
|
|
|
# - choco install python3
|
|
|
|
# - export PATH="/c/Python37:/c/Python37/Scripts:$PATH"
|
|
|
|
# env: TOXENV=py37
|
2019-08-05 19:22:18 +00:00
|
|
|
|
|
|
|
# See http://docs.travis-ci.com/user/caching/#pip-cache
|
2019-07-25 01:09:36 +00:00
|
|
|
cache: pip
|
2019-08-05 19:22:18 +00:00
|
|
|
|
2019-07-25 01:09:36 +00:00
|
|
|
install:
|
2019-07-25 01:56:38 +00:00
|
|
|
- pip install -r requirements.txt
|
2019-08-05 19:22:18 +00:00
|
|
|
- pip install -r ./tests/requirements.txt
|
|
|
|
- pip --version ; pip list
|
2019-07-25 01:09:36 +00:00
|
|
|
|
|
|
|
script:
|
2019-08-05 19:22:18 +00:00
|
|
|
# integration
|
|
|
|
- tox --sitepackages
|
2019-08-05 22:12:19 +00:00
|
|
|
- python setup.py install --dry-run
|
2019-08-05 19:22:18 +00:00
|
|
|
|
|
|
|
after_success:
|
|
|
|
- coverage report
|
2019-08-07 12:32:32 +00:00
|
|
|
# disable auto coverage bc it isn't accurate since it misses gpu code.
|
|
|
|
# to get coverage, run local and push results
|
|
|
|
# - codecov
|
2019-08-05 19:22:18 +00:00
|
|
|
|
|
|
|
notifications:
|
|
|
|
email: false
|