diff options
author | Diego Elio Pettenò <flameeyes@flameeyes.com> | 2020-10-04 20:51:50 +0200 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@flameeyes.com> | 2020-10-04 21:22:14 +0200 |
commit | 2da7720c565f560816a16462eeb6134e9741ee64 (patch) | |
tree | 2a621f8278fd3a41f3220d856fbe15379d0f32af /.travis.yml | |
parent | Add missing py.typed files to package. (diff) | |
download | freestyle-hid-2da7720c565f560816a16462eeb6134e9741ee64.tar freestyle-hid-2da7720c565f560816a16462eeb6134e9741ee64.tar.gz freestyle-hid-2da7720c565f560816a16462eeb6134e9741ee64.tar.bz2 freestyle-hid-2da7720c565f560816a16462eeb6134e9741ee64.tar.lz freestyle-hid-2da7720c565f560816a16462eeb6134e9741ee64.tar.xz freestyle-hid-2da7720c565f560816a16462eeb6134e9741ee64.tar.zst freestyle-hid-2da7720c565f560816a16462eeb6134e9741ee64.zip |
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..f219e0d --- /dev/null +++ b/.travis.yml @@ -0,0 +1,20 @@ +# SPDX-FileCopyrightText: 2013 The freestyle-hid Authors +# +# SPDX-License-Identifier: 0BSD + +dist: xenial + +language: python + +matrix: + include: + - python: 3.7 + - python: 3.8 + env: PYTEST_OPTIONS="--mypy" + - python: 3.9-dev + +install: + - pip install .[dev] + +script: + - pytest $PYTEST_OPTIONS |