@@ -19,30 +19,30 @@ jobs:
1919 - name : Run Ruff
2020 run : uvx ruff check --output-format=github .
2121
22- test-python-package :
23- needs : check-python-package
24- runs-on : ubuntu-latest
25- strategy :
26- fail-fast : false
27- matrix :
28- python-version : ["3.10", "3.11", "3.12", "3.13", "3.14"]
29- steps :
30- - uses : actions/checkout@v4
31-
32- - name : Install uv and set the Python version
33- uses : astral-sh/setup-uv@v6
34- with :
35- python-version : ${{ matrix.python-version }}
36- enable-cache : true
37-
38- - name : Install the project
39- run : uv sync --all-extras --dev
40-
41- - name : Run tests
42- run : uv run pytest
43-
44- - name : Test installation
45- run : uv run ms2rescore --help
22+ # test-python-package:
23+ # needs: check-python-package
24+ # runs-on: ubuntu-latest
25+ # strategy:
26+ # fail-fast: false
27+ # matrix:
28+ # python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
29+ # steps:
30+ # - uses: actions/checkout@v4
31+
32+ # - name: Install uv and set the Python version
33+ # uses: astral-sh/setup-uv@v6
34+ # with:
35+ # python-version: ${{ matrix.python-version }}
36+ # enable-cache: true
37+
38+ # - name: Install the project
39+ # run: uv sync --all-extras --dev
40+
41+ # - name: Run tests
42+ # run: uv run pytest
43+
44+ # - name: Test installation
45+ # run: uv run ms2rescore --help
4646
4747 test-windows-installer :
4848 runs-on : windows-latest
5656 enable-cache : true
5757
5858 - name : Install package and dependencies
59- run : uv pip install --group installer .
59+ run : uv sync --group installer
6060
6161 - name : Install Inno Setup
6262 uses : crazy-max/ghaction-chocolatey@v1
0 commit comments