mirror of
https://github.com/DarrenOfficial/dpaste.git
synced 2024-11-15 08:02:54 +11:00
19 lines
368 B
YAML
19 lines
368 B
YAML
language: python
|
|
|
|
# https://github.com/travis-ci/travis-ci/issues/9815#issuecomment-411073985
|
|
matrix:
|
|
include:
|
|
- python: 3.4
|
|
- python: 3.5
|
|
- python: 3.6
|
|
- python: 3.7
|
|
dist: xenial
|
|
sudo: true
|
|
|
|
install: pip install tox-travis coverage codacy-coverage
|
|
|
|
script: tox
|
|
|
|
after_success:
|
|
- coverage xml
|
|
- python-codacy-coverage -r coverage.xml
|