dist: xenial language: python matrix: include: - python: 3.6 env: PRE_COMMIT=true - python: 3.7 - python: 3.8-dev install: - pip install .[dev] script: - py.test - python setup.py bdist_wheel - pip install ./dist/glucometerutils-*.whl - if [[ $PRE_COMMIT ]]; then pre-commit install; pre-commit run --all-files; fi