File tree Expand file tree Collapse file tree 1 file changed +3
-12
lines changed
Expand file tree Collapse file tree 1 file changed +3
-12
lines changed Original file line number Diff line number Diff line change @@ -32,22 +32,13 @@ jobs:
3232
3333 - name : Install dependencies
3434 run : |
35- uv pip install --system -e .
36- uv pip install --system ruff pytest pytest-cov
35+ uv pip install --system -e ".[test]"
36+ uv pip install --system ruff
3737
3838 - name : Run linting with ruff
3939 run : |
4040 ruff check piedomains/
4141
4242 - name : Run tests
4343 run : |
44- pytest tests/ -v -m "not ml" --cov=piedomains --cov-report=xml
45-
46- - name : Upload coverage to Codecov
47- if : matrix.python-version == '3.11'
48- uses : codecov/codecov-action@v4
49- with :
50- file : ./coverage.xml
51- flags : unittests
52- name : codecov-umbrella
53- fail_ci_if_error : false
44+ pytest tests/ -v -m "not ml and not performance" --cov=piedomains --cov-report=term-missing
You can’t perform that action at this time.
0 commit comments