Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,10 @@ jobs:
run: uvx hatch run ${{ matrix.env.name }}:run
- name: Run tests (coverage)
if: matrix.env.test-type == 'coverage'
run: uvx hatch run ${{ matrix.env.name }}:run-cov --cov --cov-report=xml
run: |
uvx hatch run ${{ matrix.env.name }}:run-cov
uvx hatch run ${{ matrix.env.name }}:coverage combine
uvx hatch run ${{ matrix.env.name }}:coverage xml

- name: Upload coverage data
uses: codecov/codecov-action@v5
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ dependencies = [
"networkx>=2.8.8",
"natsort",
"joblib",
"numba>=0.58.1",
"numba >=0.58.1, !=0.62.0rc1", #https://github.com/numba/numba/issues/10202
"umap-learn>=0.5.7",
"pynndescent>=0.5.13",
"packaging>=21.3",
Expand All @@ -87,7 +87,7 @@ scanpy = "scanpy.cli:console_main"
test-min = [
"pytest>=8.2",
"pytest-mock",
"pytest-cov",
"pytest-cov", # only for use from VS Code
"pytest-xdist[psutil]",
"pytest-randomly",
"pytest-rerunfailures",
Expand Down
Loading