summaryrefslogtreecommitdiffstats
path: root/.travis.yml
blob: 3f76cf5a0c61585f6738580a3c4e8410b417ee9e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
dist: xenial

language: python

python:
  - 3.6
  - 3.7
  - 3.8-dev

install:
  - pip install .[dev]

script:
  - py.test
  - python setup.py bdist_wheel
  - pip install ./dist/glucometerutils-*.whl
  - pre-commit install
  - pre-commit run --all-files