2017-09-21 13:21:05 +01:00
|
|
|
language: python
|
|
|
|
sudo: false
|
|
|
|
matrix:
|
|
|
|
include:
|
2018-07-28 23:51:36 +01:00
|
|
|
- python: 2.7
|
2017-09-21 13:21:05 +01:00
|
|
|
- python: 3.5
|
|
|
|
- python: 3.6
|
2018-08-23 09:46:52 +01:00
|
|
|
- python: 3.7
|
2021-01-31 13:28:56 +00:00
|
|
|
- python: 3.8
|
|
|
|
- python: 3.9
|
2017-09-21 13:21:05 +01:00
|
|
|
- python: nightly
|
|
|
|
- python: pypy3
|
|
|
|
allow_failures:
|
|
|
|
- python: nightly
|
|
|
|
before_install:
|
|
|
|
- pip install codecov
|
2018-08-07 10:25:03 -06:00
|
|
|
- pip install 'py>=1.5.0'
|
2017-09-21 13:21:05 +01:00
|
|
|
install:
|
2019-05-22 08:57:27 +01:00
|
|
|
- pip install -r requirements.txt
|
2017-09-21 13:21:05 +01:00
|
|
|
- pip install -r requirements_dev.txt
|
2019-05-22 08:57:27 +01:00
|
|
|
- pip install -e .
|
2017-09-21 13:21:05 +01:00
|
|
|
script:
|
|
|
|
- python setup.py test
|
|
|
|
after_success:
|
|
|
|
- codecov
|