Open DaveCTurner opened 3 years ago
Pinging @elastic/es-delivery (Team:Delivery)
We still have the integTest distribution though which doesn't include x-pack by default. Although I'm wondering why there would be YAML tests which rely on x-pack in a non-xpack module to begin with?
Today the YAML test framework has features
xpack
andno_xpack
to skip certain tests depending on whether they're using the OSS distribution or not.https://github.com/elastic/elasticsearch/blob/2d6f8d1e0cd1ef313e8a65825c2156e4e8b39b07/rest-api-spec/src/yamlRestTest/resources/rest-api-spec/test/README.asciidoc#L175-L179
However today there is no OSS distribution, so
xpack
is a no-op andno_xpack
is an unconditional skip. We should fix up (or remove) any tests that are marked asno_xpack
and then drop this functionality.