Skip to content

Commit

Permalink
add skip reason
Browse files Browse the repository at this point in the history
  • Loading branch information
HarrisChu committed Nov 23, 2021
1 parent 3834dcc commit 04eba85
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_graph_storage_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ def test_scan_vertex_data(self):
assert node.get_id().as_string().find('person') >= 0
assert count > 1

@pytest.mark.skip
@pytest.mark.skip(reason='cannot test with next cursor yet')
def test_scan_vertex(self):
# test get all by once
resp = self.graph_storage_client.scan_vertex(
Expand Down Expand Up @@ -238,7 +238,7 @@ def test_scan_edge_data(self):
assert prop_values[1].as_int() >= 2010
assert count > 1

@pytest.mark.skip
@pytest.mark.skip(reason='cannot test with next cursor yet')
def test_scan_edge(self):
# test get all by once
resp = self.graph_storage_client.scan_edge(
Expand Down

0 comments on commit 04eba85

Please sign in to comment.