diff options
author | Diego Elio Pettenò <flameeyes@flameeyes.com> | 2021-05-17 00:34:40 +0200 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@flameeyes.com> | 2021-05-17 00:47:22 +0200 |
commit | 4111470f352e4dba11caff701920d4551bf52de9 (patch) | |
tree | f20c243b043a1f1026e7057b880cf977b6620d76 /.github/workflows/pytest.yml | |
parent | glucomenareo: new driver added. (diff) | |
download | glucometerutils-4111470f352e4dba11caff701920d4551bf52de9.tar glucometerutils-4111470f352e4dba11caff701920d4551bf52de9.tar.gz glucometerutils-4111470f352e4dba11caff701920d4551bf52de9.tar.bz2 glucometerutils-4111470f352e4dba11caff701920d4551bf52de9.tar.lz glucometerutils-4111470f352e4dba11caff701920d4551bf52de9.tar.xz glucometerutils-4111470f352e4dba11caff701920d4551bf52de9.tar.zst glucometerutils-4111470f352e4dba11caff701920d4551bf52de9.zip |
Diffstat (limited to '')
-rw-r--r-- | .github/workflows/pytest.yml | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml new file mode 100644 index 0000000..ecb7223 --- /dev/null +++ b/.github/workflows/pytest.yml @@ -0,0 +1,32 @@ +# SPDX-FileCopyrightText: 2021 The glucometerutils Authors +# +# SPDX-License-Identifier: 0BSD + +name: pytest + +on: + push: + pull_request: + +jobs: + pytest: + + runs-on: ${{ matrix.os }} + strategy: + matrix: + os: [ubuntu-latest] + python-version: [3.7, 3.8, 3.9] + + steps: + - uses: actions/checkout@v2 + - name: Set up Python ${{ matrix.python-version }} + uses: actions/setup-python@v2 + with: + python-version: ${{ matrix.python-version }} + - name: Install dependencies + run: | + sudo apt install libusb-1.0-0-dev libudev-dev + pip install .[all] + - name: Test with pytest + run: | + pytest -vvv --mypy |