Skip to content

Commit c412f4f

Browse files
committed
Fix skip criterion
1 parent 36b1c33 commit c412f4f

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

tests/test_any.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,10 @@ def test_cast_scoping_any(server_type):
122122
assert entity.location == new_entity.location
123123

124124

125-
@conftest.raises_for_servers_version_under("8.0")
125+
@pytest.mark.skipif(
126+
not conftest.SERVERS_VERSION_GREATER_THAN_OR_EQUAL_TO_8_0,
127+
reason="Requires 24R2.",
128+
)
126129
def test_cast_data_sources_any(server_type):
127130
# Not available through grpc yet
128131
entity = dpf.DataSources(server=server_type, result_path="test.pth")

0 commit comments

Comments
 (0)