Skip to content

Commit

Permalink
Mark test as failing under 3.8
Browse files Browse the repository at this point in the history
Discovered that single skeleton > networkx failing under Python 3.8 is due to spurious edge detection . See jni#225 for
further details.
  • Loading branch information
ns-rse committed Apr 19, 2024
1 parent 56b162e commit 5d50eb6
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/skan/test/test_csr.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
from __future__ import annotations
import sys

from collections import defaultdict
from itertools import product
Expand Down Expand Up @@ -422,7 +423,11 @@ def test_skeletonlabel():
None,
24,
24,
id='skeleton_linear1 (no summary)'
id='skeleton_linear1 (no summary)',
marks=pytest.mark.xfail(
sys.version_info[:2] == (3, 8),
reason='Incorrect edege discovery (#225)'
)
),
pytest.param(
skeleton_linear2,
Expand Down

0 comments on commit 5d50eb6

Please sign in to comment.