summaryrefslogtreecommitdiffstats
path: root/.travis.yml
blob: fb34a87484635af0a9a720f1bab00d737f1a81af (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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,tools]

script:
  - pytest $PYTEST_OPTIONS