2016-08-17 18:36:01 +02:00
|
|
|
language: python
|
|
|
|
|
|
|
|
cache: pip
|
|
|
|
|
2017-08-25 17:48:57 +02:00
|
|
|
addons:
|
|
|
|
apt:
|
|
|
|
sources: [ 'ubuntu-toolchain-r-test' ]
|
|
|
|
packages:
|
|
|
|
- libstdc++6
|
|
|
|
- libfuzzy-dev
|
|
|
|
|
2020-01-13 10:32:57 +01:00
|
|
|
python:
|
|
|
|
- "3.6"
|
|
|
|
- "3.6-dev"
|
|
|
|
- "3.7"
|
|
|
|
- "3.7-dev"
|
|
|
|
- "3.8"
|
|
|
|
- "3.8-dev"
|
2016-08-17 18:36:01 +02:00
|
|
|
|
|
|
|
install:
|
2019-04-25 11:45:46 +02:00
|
|
|
- bash travis/install_travis.sh
|
2016-08-17 18:36:01 +02:00
|
|
|
|
|
|
|
script:
|
2019-04-25 11:45:46 +02:00
|
|
|
- bash travis/test_travis.sh
|
2016-08-17 18:36:01 +02:00
|
|
|
|
|
|
|
after_success:
|
2019-01-25 10:35:53 +01:00
|
|
|
- pipenv run codecov
|
|
|
|
- pipenv run coveralls
|