summaryrefslogblamecommitdiffstats
path: root/.travis.yml
blob: d6f73022a1a29f5da9110695f5ca85c4cae04895 (plain) (tree)
1
2
3
4
5
6
7
8
9
10

            

                

          
                 
                          

                     
                         

        
                      
 





                        

           
                                                              

                                            
                                                                                 
dist: xenial

language: python

matrix:
  include:
    - python: 3.7
      env: PRE_COMMIT=true
    - python: 3.8
    - python: 3.9-dev
      env: RUN_MYPY=false

install:
  - pip install .[dev]

addons:
  apt:
    packages:
      - libusb-1.0-0-dev
      - libudev-dev

script:
  - py.test
  - if [[ $RUN_MYPY != false ]]; then mypy glucometerutils; fi
  - python setup.py bdist_wheel
  - pip install ./dist/glucometerutils-*.whl
  - if [[ $PRE_COMMIT ]]; then pre-commit install; pre-commit run --all-files; fi