Skip to content

Commit dd5b672

Browse files
authored
Added Artifact action to CI/CD so we can download test images from runnders (#973)
* Added action * debug output * fixed typo * final action
1 parent d4dded5 commit dd5b672

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.github/workflows/test.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,16 @@ jobs:
9191
run: |
9292
tox -vv
9393
94+
- name: List figures for potential debugging
95+
ls -alh /home/runner/work/squidpy/squidpy/tests/figures
96+
97+
- name: Archive figures generated during testing
98+
if: always()
99+
uses: actions/upload-artifact@v4
100+
with:
101+
name: visual_test_results_${{ matrix.os }}-python${{ matrix.python }}
102+
path: /home/runner/work/squidpy/squidpy/tests/figures/*
103+
94104
- name: Upload coverage to Codecov
95105
uses: codecov/codecov-action@v4
96106
with:

0 commit comments

Comments
 (0)