Skip to content

Commit 9fbdd8b

Browse files
authored
chore(tests): follow-up removing unused instructlab/granite-7b-lab-GGUF from tests (#3541)
Signed-off-by: Tibor Dancs (work-laptop) <[email protected]>
1 parent 6a00db0 commit 9fbdd8b

File tree

1 file changed

+1
-8
lines changed

1 file changed

+1
-8
lines changed

tests/playwright/src/ai-lab-extension.spec.ts

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -395,16 +395,11 @@ test.describe.serial(`AI Lab extension installation and verification`, () => {
395395
});
396396
});
397397

398-
['ggerganov/whisper.cpp', 'instructlab/granite-7b-lab-GGUF'].forEach(modelName => {
398+
['ggerganov/whisper.cpp'].forEach(modelName => {
399399
test.describe.serial(`Model service creation and deletion`, { tag: '@smoke' }, () => {
400400
let catalogPage: AILabCatalogPage;
401401
let modelServiceDetailsPage: AILabServiceDetailsPage;
402402

403-
test.skip(
404-
isLinux && modelName === 'instructlab/granite-7b-lab-GGUF',
405-
`Skipping ${modelName} model service creation on linux due to known issue`,
406-
);
407-
408403
test.beforeAll(`Open AI Lab Catalog`, async ({ runner, page, navigationBar }) => {
409404
aiLabPage = await reopenAILabDashboard(runner, page, navigationBar);
410405
await aiLabPage.navigationBar.waitForLoad();
@@ -438,8 +433,6 @@ test.describe.serial(`AI Lab extension installation and verification`, () => {
438433
});
439434

440435
test(`Make GET request to the model service for ${modelName}`, async ({ request }) => {
441-
test.skip(modelName === 'instructlab/granite-7b-lab-GGUF', `Skipping GET request for ${modelName}`);
442-
443436
const port = await modelServiceDetailsPage.getInferenceServerPort();
444437
const url = `http://localhost:${port}`;
445438

0 commit comments

Comments
 (0)