python-bme680/.travis.yml

25 lines
397 B
YAML
Raw Normal View History

2018-08-28 21:30:59 +02:00
language: python
sudo: false
2018-09-02 12:26:04 +02:00
cache: pip
git:
submodules: true
2018-08-28 21:30:59 +02:00
matrix:
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
install:
- pip install --ignore-installed --upgrade setuptools pip tox coveralls
2018-08-28 21:30:59 +02:00
script:
2018-09-02 12:26:04 +02:00
- cd library
- tox -vv
after_success: if [ "$TOXENV" == "py35" ]; then coveralls; fi