@@ -26,38 +26,38 @@ jobs:
2626 - name : Run Ruff linting
2727 run : hatch run ruff check .
2828
29- test :
30- needs : lint
31- strategy :
32- fail-fast : false
33- matrix :
34- os : [ubuntu-latest, macos-latest, windows-latest]
35- py : ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
29+ # test:
30+ # needs: lint
31+ # strategy:
32+ # fail-fast: false
33+ # matrix:
34+ # os: [ubuntu-latest, macos-latest, windows-latest]
35+ # py: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
3636
37- runs-on : ${{ matrix.os }}
38- steps :
39- - uses : actions/checkout@v4
40- with :
41- fetch-depth : 0 # Required for hatch-vcs to determine version
42- - uses : actions/setup-python@v5
43- with :
44- python-version : ${{ matrix.py }}
45- - name : Install system dependencies (Linux)
46- if : runner.os == 'Linux'
47- run : |
48- sudo apt-get update
49- sudo apt-get install -y libhidapi-dev
50- - name : Install system dependencies (macOS)
51- if : runner.os == 'macOS'
52- run : |
53- brew install hidapi
54- - name : Install Hatch
55- run : pip install hatch
56- - name : Run tests
57- run : hatch run test:pytest
58- - name : Upload coverage to Codecov
59- if : matrix.os == 'ubuntu-latest' && matrix.py == '3.12'
60- uses : codecov/codecov-action@v4
61- with :
62- file : ./coverage.xml
63- fail_ci_if_error : false
37+ # runs-on: ${{ matrix.os }}
38+ # steps:
39+ # - uses: actions/checkout@v4
40+ # with:
41+ # fetch-depth: 0 # Required for hatch-vcs to determine version
42+ # - uses: actions/setup-python@v5
43+ # with:
44+ # python-version: ${{ matrix.py }}
45+ # - name: Install system dependencies (Linux)
46+ # if: runner.os == 'Linux'
47+ # run: |
48+ # sudo apt-get update
49+ # sudo apt-get install -y libhidapi-dev
50+ # - name: Install system dependencies (macOS)
51+ # if: runner.os == 'macOS'
52+ # run: |
53+ # brew install hidapi
54+ # - name: Install Hatch
55+ # run: pip install hatch
56+ # - name: Run tests
57+ # run: hatch run test:pytest
58+ # - name: Upload coverage to Codecov
59+ # if: matrix.os == 'ubuntu-latest' && matrix.py == '3.12'
60+ # uses: codecov/codecov-action@v4
61+ # with:
62+ # file: ./coverage.xml
63+ # fail_ci_if_error: false
0 commit comments