mirror of
https://github.com/correl/openapi-core.git
synced 2024-11-21 19:18:41 +00:00
25 lines
440 B
YAML
25 lines
440 B
YAML
language: python
|
|
sudo: false
|
|
matrix:
|
|
include:
|
|
- python: 2.7
|
|
- python: 3.5
|
|
- python: 3.6
|
|
- python: 3.7
|
|
- python: 3.8
|
|
- python: 3.9
|
|
- python: nightly
|
|
- python: pypy3
|
|
allow_failures:
|
|
- python: nightly
|
|
before_install:
|
|
- pip install codecov
|
|
- pip install 'py>=1.5.0'
|
|
install:
|
|
- pip install -r requirements.txt
|
|
- pip install -r requirements_dev.txt
|
|
- pip install -e .
|
|
script:
|
|
- python setup.py test
|
|
after_success:
|
|
- codecov
|