blob: f2f652c69a60277deb28f400d40bb2192fe33b92 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# SPDX-FileCopyrightText: 2013 The glucometerutils Authors
#
# SPDX-License-Identifier: MIT
dist: xenial
language: python
matrix:
include:
- python: 3.7
- python: 3.8
env: PRE_COMMIT=true PYTEST_OPTIONS="--mypy --flake8"
- python: 3.9-dev
install:
- pip install .[all]
addons:
apt:
packages:
- libusb-1.0-0-dev
- libudev-dev
script:
- pytest $PYTEST_OPTIONS
- if [[ $PRE_COMMIT ]]; then pre-commit run --all-files; fi
|