mirror of
https://github.com/cmur2/python-bme680.git
synced 2024-12-22 22:54:29 +01:00
26 lines
345 B
YAML
26 lines
345 B
YAML
---
|
|
os: linux
|
|
language: python
|
|
cache: pip
|
|
|
|
git:
|
|
submodules: true
|
|
|
|
jobs:
|
|
include:
|
|
- python: "2.7"
|
|
env: TOXENV=py27
|
|
- python: "3.5"
|
|
env: TOXENV=py35
|
|
- python: "3.7"
|
|
env: TOXENV=py37
|
|
- python: "3.8"
|
|
env: TOXENV=py38
|
|
|
|
install:
|
|
- pip install --ignore-installed --upgrade setuptools pip tox
|
|
|
|
script:
|
|
- cd library
|
|
- tox -vv
|