Skip to content

Commit a226ebe

Browse files
committed
Once more
1 parent f2ece9b commit a226ebe

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

.github/workflows/full_test.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,14 +40,18 @@ jobs:
4040

4141

4242

43-
- name: Install the project
43+
- name: Install dependencies
4444
run: |
45-
#python -m pip install --upgrade pip
46-
uv sync --all-extras test
45+
uv venv
46+
source .venv/bin/activate
47+
uv pip install pytest pytest-cov
4748
49+
- name: Install mikeio
50+
run: |
51+
uv pip install .[test]
4852
- name: Test with pytest
4953
run: |
50-
uv run pytest --cov=mikeio tests --ignore tests/performance/ --ignore tests/notebooks/ --disable-warnings
54+
pytest --cov=mikeio tests --ignore tests/performance/ --ignore tests/notebooks/ --disable-warnings
5155
- name: Test docstrings with doctest
5256
run: make doctest
5357
- name: Static type check

0 commit comments

Comments
 (0)