From c4e2a45175e10c8a58568bf45ae9ae858ac117a6 Mon Sep 17 00:00:00 2001 From: Chris Barnes Date: Tue, 9 Jan 2024 11:02:45 +0000 Subject: [PATCH] Test geodesic matrix on CatmaidNeuron --- pymaid/tests/test_pymaid.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pymaid/tests/test_pymaid.py b/pymaid/tests/test_pymaid.py index 3e2e5f9..15b819d 100644 --- a/pymaid/tests/test_pymaid.py +++ b/pymaid/tests/test_pymaid.py @@ -698,6 +698,10 @@ def test_node_sorting(self): self.assertIsInstance(ns.graph.node_label_sorting(self.n), list) + @try_conditions + def test_geodesic_matrix(self): + geo = ns.geodesic_matrix(self.n) + class TestConnectivity(unittest.TestCase): """Test connectivity-related functions."""