Skip to content

Commit

Permalink
Enable dualstack test for Node (#131)
Browse files Browse the repository at this point in the history
v1.12.x is the next release, so that should be the first one that has
the dualstack feature enabled by default.
  • Loading branch information
murgatroid99 authored Sep 13, 2024
1 parent f061c98 commit b5193c3
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 @@ -45,6 +45,8 @@ class DualStackTest(xds_k8s_testcase.RegularXdsKubernetesTestCase):
def is_supported(config: skips.TestConfig) -> bool:
if config.client_lang in _Lang.CPP | _Lang.PYTHON | _Lang.JAVA:
return config.version_gte("v1.66.x")
if config.client_lang == _Lang.NODE:
return config.version_gte("v1.12.x")
return False

@classmethod
Expand Down

0 comments on commit b5193c3

Please sign in to comment.