Skip to content

Commit

Permalink
Skip test for unimplemented feature.
Browse files Browse the repository at this point in the history
  • Loading branch information
keevindoherty committed Oct 24, 2024
1 parent 6613c4b commit 96f175e
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions tests/utils/test_fiedler.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,6 @@ def test_fiedler(self):
fiedler_value, fiedler_vec, _ = find_fiedler_pair(L)
self.assertTrue(np.isclose(fiedler_value, N))

def test_cache(self):
return

class TestDisconnectedGraphs(unittest.TestCase):
def setUp(self):
# Construct a disconnected graph with two connected components
Expand All @@ -43,6 +40,7 @@ def setUp(self):
self.disconnected_graph.add_edges_from(
(u,v) for u in range(component_size, 2*component_size) for v in range(u+1, 2*component_size))

@unittest.skip("Feature not yet supported.")
def test_fiedler(self):
# Test multiple connected components
edge_list = nx_to_mac(self.disconnected_graph)
Expand Down

0 comments on commit 96f175e

Please sign in to comment.