annotate velib_python/.travis.yml @ 14:60ead9b5fc1b
Mark temperature as invalid when <-20C as per spec.
Shows up as -25C on the unit I have when the sensor is not connected.
author |
Daniel O'Connor <darius@dons.net.au> |
date |
Mon, 06 Dec 2021 11:26:20 +1030 |
parents |
9c0435a617db |
children |
|
rev |
line source |
8
|
1 language: python
|
|
2 dist: focal
|
|
3
|
|
4 python:
|
|
5 - "3.7"
|
|
6
|
|
7 before_install:
|
|
8 - sudo apt-get update
|
|
9 - sudo apt-get install dbus-x11 libcairo2-dev libdbus-1-dev libgirepository1.0-dev pkg-config
|
|
10 - python -m pip install --upgrade pip
|
|
11
|
|
12 install:
|
|
13 - pip3 install dbus-python PyGObject
|
|
14
|
|
15 script:
|
|
16 - eval `dbus-launch --sh-syntax` && cd test && python3 test_vedbus.py -v
|