Skip to content

Commit ed60d9f

Browse files
committed
fix test xenium
1 parent a571681 commit ed60d9f

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/test.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,15 +52,15 @@ jobs:
5252
pip install --pre -e ".[dev,test]"
5353
5454
- name: Download artifact of test data
55-
if: matrix.python == '3.10'
55+
if: matrix.python == '3.12'
5656
uses: dawidd6/action-download-artifact@v2
5757
with:
5858
workflow: prepare_test_data.yaml
5959
name: data
6060
path: ./data
6161

6262
- name: List the data directory
63-
if: matrix.python == '3.10'
63+
if: matrix.python == '3.12'
6464
run: |
6565
ls -l ./data
6666
pwd

tests/test_xenium.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ def test_roundtrip_with_data_limits() -> None:
4646
# pointing to "data".
4747
# The GitHub workflow "prepare_test_data.yaml" takes care of downloading the datasets and uploading an artifact for the
4848
# tests to use
49-
@pytest.mark.skipif(sys.version_info < (3, 10), reason="Test requires Python 3.10 or higher")
49+
@pytest.mark.skipif(sys.version_info < (3, 12), reason="Test requires Python 3.10 or higher")
5050
@pytest.mark.parametrize(
5151
"dataset,expected",
5252
[

0 commit comments

Comments
 (0)