We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f2ece9b commit a226ebeCopy full SHA for a226ebe
.github/workflows/full_test.yml
@@ -40,14 +40,18 @@ jobs:
40
41
42
43
- - name: Install the project
+ - name: Install dependencies
44
run: |
45
- #python -m pip install --upgrade pip
46
- uv sync --all-extras test
+ uv venv
+ source .venv/bin/activate
47
+ uv pip install pytest pytest-cov
48
49
+ - name: Install mikeio
50
+ run: |
51
+ uv pip install .[test]
52
- name: Test with pytest
53
- 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
55
- name: Test docstrings with doctest
56
run: make doctest
57
- name: Static type check
0 commit comments