We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e06465c commit 32ddb96Copy full SHA for 32ddb96
1 file changed
.github/workflows/test.yml
@@ -55,6 +55,9 @@ jobs:
55
python-version: ${{ matrix.python }}
56
cache-dependency-glob: pyproject.toml
57
58
+ - name: Ensure figure directory exists
59
+ run: mkdir -p "$GITHUB_WORKSPACE/tests/figures"
60
+
61
- name: Cache downloaded data
62
uses: actions/cache@v4
63
with:
@@ -77,7 +80,7 @@ jobs:
77
80
uses: actions/upload-artifact@v4
78
81
79
82
name: visual_test_results_${{ matrix.name }}
- path: /home/runner/work/squidpy/squidpy/tests/figures/*
83
+ path: ${{ github.workspace }}/tests/figures/*
84
85
- name: Upload coverage data
86
if: matrix.test-type == 'coverage'
0 commit comments