Skip to content

Commit 60a696d

Browse files
authored
Allow running dualstack tests for Go (#152)
v1.71.x is the next release, so that should be the first one that has the dualstack feature available. This change should allow running the test against master.
1 parent 7b19947 commit 60a696d

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

tests/dualstack_test.py

+2
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,8 @@ def is_supported(config: skips.TestConfig) -> bool:
4949
return config.version_gte("v1.66.x")
5050
if config.client_lang == _Lang.NODE:
5151
return config.version_gte("v1.12.x")
52+
if config.client_lang == _Lang.GO:
53+
return config.version_gte("v1.71.x")
5254
return False
5355

5456
@classmethod

0 commit comments

Comments
 (0)