1
0
mirror of https://github.com/cmur2/python-bme680.git synced 2024-12-23 08:54:27 +01:00
python-bme680/.travis.yml

26 lines
379 B
YAML
Raw Normal View History

---
os: linux
2018-08-28 21:30:59 +02:00
language: python
2018-09-02 12:26:04 +02:00
cache: pip
git:
submodules: true
2018-08-28 21:30:59 +02:00
jobs:
2018-09-02 12:26:04 +02:00
include:
- python: "2.7"
env: TOXENV=py27
- python: "3.5"
env: TOXENV=py35
- python: "2.7"
env: TOXENV=py27
2018-09-02 12:26:04 +02:00
install:
- pip install --ignore-installed --upgrade setuptools pip tox coveralls
2018-08-28 21:30:59 +02:00
script:
- cd library
- tox -vv
2018-09-02 12:26:04 +02:00
after_success: if [ "$TOXENV" == "py35" ]; then coveralls; fi