30 lines
472 B
YAML
Executable File
30 lines
472 B
YAML
Executable File
sudo: true
|
|
language: python
|
|
cache: pip
|
|
addons:
|
|
apt:
|
|
update: true
|
|
install:
|
|
- make install
|
|
jobs:
|
|
include:
|
|
- stage: test
|
|
script:
|
|
- make test
|
|
python: '3.6'
|
|
- stage: test
|
|
script:
|
|
- make test
|
|
python: '3.7'
|
|
dist: xenial
|
|
- stage: test
|
|
script:
|
|
- make test
|
|
python: '3.8'
|
|
dist: xenial
|
|
- stage: coverage
|
|
python: '3.8'
|
|
script:
|
|
- make test
|
|
- codecov --verbose
|