We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 36b1c33 commit c412f4fCopy full SHA for c412f4f
tests/test_any.py
@@ -122,7 +122,10 @@ def test_cast_scoping_any(server_type):
122
assert entity.location == new_entity.location
123
124
125
-@conftest.raises_for_servers_version_under("8.0")
+@pytest.mark.skipif(
126
+ not conftest.SERVERS_VERSION_GREATER_THAN_OR_EQUAL_TO_8_0,
127
+ reason="Requires 24R2.",
128
+)
129
def test_cast_data_sources_any(server_type):
130
# Not available through grpc yet
131
entity = dpf.DataSources(server=server_type, result_path="test.pth")
0 commit comments