2019-02-09 03:53:08 +00:00
|
|
|
language: python
|
2019-08-20 20:24:38 +00:00
|
|
|
env:
|
|
|
|
- TESTING_ON_TRAVIS=1
|
2019-02-09 04:18:16 +00:00
|
|
|
matrix:
|
|
|
|
include:
|
2019-08-20 20:24:38 +00:00
|
|
|
- name: "Python 3.7 on Xenial Linux"
|
|
|
|
python: 3.7
|
|
|
|
- name: "Python 3.7 on macOS"
|
|
|
|
os: osx
|
|
|
|
osx_image: xcode11
|
|
|
|
language: shell
|
2019-08-25 17:31:42 +00:00
|
|
|
python: 3.7
|
2019-08-20 20:24:38 +00:00
|
|
|
- name: "Python 3.7 on Windows"
|
|
|
|
os: windows
|
|
|
|
language: shell
|
|
|
|
before_install:
|
|
|
|
- choco install python
|
|
|
|
- python -m pip install --upgrade pip
|
|
|
|
env:
|
|
|
|
- PATH=/c/Python37:/c/Python37/Scripts:$PATH
|
|
|
|
- TESTING_ON_TRAVIS=1
|
2019-08-25 17:31:42 +00:00
|
|
|
install:
|
|
|
|
- pip3 install -r requirements-testing.txt
|
|
|
|
script: python3 -m coverage run tests.py || python -m coverage run tests.py
|
|
|
|
after_success:
|
|
|
|
- coveralls
|