diff options
-rw-r--r-- | .github/workflows/pytest.yml | 31 | ||||
-rw-r--r-- | .mergify.yml | 4 | ||||
-rw-r--r-- | .travis.yml | 24 |
3 files changed, 33 insertions, 26 deletions
diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml new file mode 100644 index 0000000..abf2178 --- /dev/null +++ b/.github/workflows/pytest.yml @@ -0,0 +1,31 @@ +# SPDX-FileCopyrightText: 2021 The freestyle-hid Authors +# +# SPDX-License-Identifier: 0BSD + +name: pytest + +on: + push: + pull_request: + +jobs: + test: + + runs-on: ${{ matrix.os }} + strategy: + matrix: + os: [ubuntu-latest, windows-latest, macos-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: | + pip install .[dev,tools] + - name: Test with pytest + run: | + pytest -vvv --mypy diff --git a/.mergify.yml b/.mergify.yml index 929e63b..2254f30 100644 --- a/.mergify.yml +++ b/.mergify.yml @@ -6,7 +6,7 @@ pull_request_rules: - name: Automatic merge on approval conditions: - "#approved-reviews-by>=1" - - "status-success=Travis CI - Pull Request" + - "status-success=pytest" - "status-success=pre-commit" actions: merge: @@ -14,7 +14,7 @@ pull_request_rules: - name: Automatic merge from Flameeyes conditions: - "author=Flameeyes" - - "status-success=Travis CI - Pull Request" + - "status-success=pytest" - "status-success=pre-commit" actions: merge: diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 633fbf3..0000000 --- a/.travis.yml +++ /dev/null @@ -1,24 +0,0 @@ -# SPDX-FileCopyrightText: 2013 The freestyle-hid Authors -# -# SPDX-License-Identifier: 0BSD - -dist: xenial - -language: python - -matrix: - include: - - python: 3.7 - - python: 3.8 - - python: 3.9 - env: PYTEST_OPTIONS="--mypy" - - python: 3.10-dev - -install: - # Work around failures with Python 3.7 on Travis CI coming with its own - # version of attrs that is incompatible with pytest. - - pip install -U attrs - - pip install .[dev,tools] - -script: - - pytest $PYTEST_OPTIONS |