File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed
test_elasticsearch_serverless/test_server Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change 108
108
"scroll/10_basic" ,
109
109
"security/10_api_key_basic" ,
110
110
}
111
+ SKIPPED_TESTS = {
112
+ # Timeouts with async client
113
+ # https://github.com/elastic/elasticsearch-serverless-python/issues/63
114
+ "cluster/cluster_info[0]" ,
115
+ "inference/10_basic[0]" ,
116
+ }
111
117
112
118
113
119
XPACK_FEATURES = None
@@ -572,8 +578,7 @@ def remove_implicit_resolver(cls, tag_to_remove):
572
578
# Skip either 'test_name' or 'test_name[x]'
573
579
if pytest_test_name in FAILING_TESTS or pytest_param_id in FAILING_TESTS :
574
580
pytest_param ["fail" ] = True
575
- # https://github.com/elastic/elasticsearch-serverless-python/issues/63
576
- elif pytest_param_id == "cluster/cluster_info[0]" :
581
+ elif pytest_test_name in SKIPPED_TESTS or pytest_param_id in SKIPPED_TESTS :
577
582
pytest_param ["skip" ] = True
578
583
579
584
YAML_TEST_SPECS .append (pytest .param (pytest_param , id = pytest_param_id ))
You can’t perform that action at this time.
0 commit comments