openapi-core/.travis.yml

26 lines
440 B
YAML
Raw Normal View History

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