Revert "[Index management] Unskip api_integration tests for inference endpoints" (#189742)

Reverts elastic/kibana#189664 
In this PR, re-skipping the tests to ensure that reverting inference_id
with model_id [PR](https://github.com/elastic/kibana/pull/189732) can be
merged smoothly.
This commit is contained in:
Saarika Bhasi 2024-08-01 17:26:07 -04:00 committed by GitHub
parent 3bd732df27
commit 910b34e392
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 5 additions and 2 deletions

View file

@ -20,7 +20,9 @@ export default function ({ getService }: FtrProviderContext) {
const service = 'elser';
const modelId = '.elser_model_2';
describe('Inference endpoints', function () {
// FLAKY: https://github.com/elastic/kibana/issues/189333
// Failing: See https://github.com/elastic/kibana/issues/189333
describe.skip('Inference endpoints', function () {
after(async () => {
try {
log.debug(`Deleting underlying trained model`);

View file

@ -26,7 +26,8 @@ export default function ({ getService }: FtrProviderContext) {
let roleAuthc: RoleCredentials;
let internalReqHeader: InternalRequestHeader;
describe('Inference endpoints', function () {
// FLAKY: https://github.com/elastic/kibana/issues/189464
describe.skip('Inference endpoints', function () {
before(async () => {
roleAuthc = await svlUserManager.createM2mApiKeyWithRoleScope('admin');
internalReqHeader = svlCommonApi.getInternalRequestHeader();