Skip to content

Commit

Permalink
Allow running dualstack tests for Go (#152)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
arjan-bal authored Feb 13, 2025
1 parent 7b19947 commit 60a696d
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/dualstack_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,8 @@ def is_supported(config: skips.TestConfig) -> bool:
return config.version_gte("v1.66.x")
if config.client_lang == _Lang.NODE:
return config.version_gte("v1.12.x")
if config.client_lang == _Lang.GO:
return config.version_gte("v1.71.x")
return False

@classmethod
Expand Down

0 comments on commit 60a696d

Please sign in to comment.