@@ -74,14 +74,12 @@ class YamlTests
74
74
'RuntimeFields\_50_IpTest::GetMapping ' => 'String mismatch ' ,
75
75
'RuntimeFields\_60_BooleanTest::GetMapping ' => 'String mismatch ' ,
76
76
'SearchableSnapshots\_10_UsageTest::TestsSearchableSnapshotsUsageStatsWithFull_copyAndShared_cacheIndices ' => 'Mismatch values ' ,
77
+ 'ServiceAccounts\_10_BasicTest::TestServiceAccountTokens ' => 'Count mismatch ' ,
77
78
'Snapshot\_10_BasicTest::CreateASourceOnlySnapshotAndThenRestoreIt ' => 'Snapshot name already exists ' ,
78
79
'Snapshot\_20_Operator_Privileges_DisabledTest::OperatorOnlySettingsCanBeSetAndRestoredByNonoperatorUserWhenOperatorPrivilegesIsDisabled ' => 'Count mismatch ' ,
79
80
'Ssl\_10_BasicTest::TestGetSSLCertificates ' => 'Mismatch values ' ,
80
81
'Transform\_Transforms_CrudTest::TestDeleteTransformWhenItDoesNotExist ' => 'Invalid version format: TRANSFORM HTTP/1.1 ' ,
81
- 'UnsignedLong\_10_BasicTest::* ' => 'Skipped all tests ' ,
82
- 'UnsignedLong\_20_Null_ValueTest::* ' => 'Skipped all tests ' ,
83
- 'UnsignedLong\_30_Multi_FieldsTest::* ' => 'Skipped all tests ' ,
84
- 'UnsignedLong\_50_Script_ValuesTest::* ' => 'Skipped all tests ' ,
82
+ 'UnsignedLong\* ' => 'Skipped all tests ' ,
85
83
'Vectors\_30_Sparse_Vector_BasicTest::DeprecatedFunctionSignature ' => 'Failed asserting contains string ' ,
86
84
];
87
85
@@ -189,10 +187,11 @@ public function build(): array
189
187
190
188
$ skippedTest = sprintf ("%s \\%s::%s " , $ namespace , $ testName , $ functionName );
191
189
$ skippedAllTest = sprintf ("%s \\%s::* " , $ namespace , $ testName );
190
+ $ skippedAllFiles = sprintf ("%s \\* " , $ namespace );
192
191
$ skip = strtolower (self ::$ testSuite ) === 'free '
193
192
? self ::SKIPPED_TEST_OSS
194
193
: self ::SKIPPED_TEST_XPACK ;
195
- if (isset ($ skip [$ skippedAllTest ])) {
194
+ if (isset ($ skip [$ skippedAllFiles ]) || isset ( $ skip [ $ skippedAllTest ])) {
196
195
$ allSkipped = true ;
197
196
$ functions .= self ::render (
198
197
self ::TEMPLATE_FUNCTION_SKIPPED ,
0 commit comments