Skip to content

Commit 814bb7b

Browse files
committed
Fix unit tests workflow
1 parent 029bb20 commit 814bb7b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/unit_tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,14 +62,14 @@ jobs:
6262

6363
- name: Install dependencies and check code
6464
run: |
65-
uv run pytest -m "not integration_test" --cov vec_inf --cov-report=xml tests --prerelease=allow
65+
uv run --frozen pytest -m "not integration_test" --cov vec_inf --cov-report=xml tests
6666
6767
- name: Install the core package only
6868
run: uv sync --no-dev
6969

7070
- name: Run package import tests
7171
run: |
72-
uv run pytest tests/test_imports.py
72+
uv run --frozen pytest tests/test_imports.py
7373
7474
- name: Import Codecov GPG public key
7575
run: |
@@ -79,7 +79,7 @@ jobs:
7979
uses: codecov/codecov-action@v5.5.1
8080
with:
8181
token: ${{ secrets.CODECOV_TOKEN }}
82-
file: ./coverage.xml
82+
files: ./coverage.xml
8383
name: codecov-umbrella
8484
fail_ci_if_error: true
8585
verbose: true

0 commit comments

Comments
 (0)