1
0
mirror of https://github.com/cmur2/python-bme680.git synced 2025-08-09 14:48:44 +02:00

travis: fix build config validation problems

- https://docs.travis-ci.com/user/reference/overview/#deprecated-virtualization-environments
This commit is contained in:
2020-02-28 13:23:20 +01:00
committed by GitHub
parent db4626f370
commit f61ae9a86a

View File

@@ -1,11 +1,12 @@
---
os: linux
language: python
sudo: false
cache: pip
git:
submodules: true
matrix:
jobs:
include:
- python: "2.7"
env: TOXENV=py27
@@ -15,10 +16,10 @@ matrix:
env: TOXENV=py27
install:
- pip install --ignore-installed --upgrade setuptools pip tox coveralls
- pip install --ignore-installed --upgrade setuptools pip tox coveralls
script:
- cd library
- tox -vv
- cd library
- tox -vv
after_success: if [ "$TOXENV" == "py35" ]; then coveralls; fi