Skip to content

Commit 2afa2e0

Browse files
committed
Ignore Arrow recommendation in nx loading tests
1 parent 0374a4e commit 2afa2e0

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

graphdatascience/tests/integration/test_nx_loader.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ def test_undirected_nx(gds: GraphDataScience, undirected_nx_G: nx.Graph) -> None
5656
G.drop()
5757

5858

59+
@pytest.mark.filterwarnings("ignore: GDS Enterprise users can use Apache Arrow")
5960
@pytest.mark.compatible_with(min_inclusive=ServerVersion(2, 1, 0))
6061
def test_undirected_nx_without_Arrow(gds_without_arrow: GraphDataScience, undirected_nx_G: nx.Graph) -> None:
6162
G = gds_without_arrow.graph.networkx.load(undirected_nx_G, GRAPH_NAME)
@@ -92,6 +93,7 @@ def test_directed_nx(gds: GraphDataScience, directed_nx_G: nx.Graph) -> None:
9293
G.drop()
9394

9495

96+
@pytest.mark.filterwarnings("ignore: GDS Enterprise users can use Apache Arrow")
9597
@pytest.mark.compatible_with(min_inclusive=ServerVersion(2, 1, 0))
9698
def test_directed_nx_without_Arrow(gds_without_arrow: GraphDataScience, directed_nx_G: nx.Graph) -> None:
9799
G = gds_without_arrow.graph.networkx.load(directed_nx_G, GRAPH_NAME)

0 commit comments

Comments
 (0)