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 6e2d7b9 commit dd17960Copy full SHA for dd17960
tools/run_tests/xds_k8s_test_driver/tests/subsetting_test.py
@@ -22,6 +22,7 @@
22
23
from framework import xds_k8s_testcase
24
from framework import xds_url_map_testcase
25
+from framework.helpers import skips
26
27
flags.adopt_module_key_flags(xds_k8s_testcase)
28
@@ -36,6 +37,13 @@
36
37
38
class SubsettingTest(xds_k8s_testcase.RegularXdsKubernetesTestCase):
39
40
+ @staticmethod
41
+ def isSupported(config: skips.TestConfig) -> bool:
42
+ # Subsetting is an experimental feature where most work is done on the
43
+ # server-side. We limit it to only run on master branch to save
44
+ # resources.
45
+ return config.version_ge('master')
46
+
47
def test_subsetting_basic(self) -> None:
48
with self.subTest('00_create_health_check'):
49
self.td.create_health_check()
0 commit comments