Skip to content

Commit cafb718

Browse files
authored
Merge pull request opendatahub-io#4570 from antowaddle/quarantineModelServingRHOAIENG-30799
Quarantine model serving tests for Product Bug RHOAIENG-30799
2 parents a097743 + 5404d1c commit cafb718

File tree

7 files changed

+30
-13
lines changed

7 files changed

+30
-13
lines changed

frontend/src/__tests__/cypress/cypress/tests/e2e/dataScienceProjects/models/testDeployOCIModel.cy.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ let modelDeploymentName: string;
2626
const uuid = generateTestUUID();
2727

2828
describe(
29-
'A user can create an OCI connection and deploy a model with it',
29+
'[Product Bug: RHOAIENG-30799] A user can create an OCI connection and deploy a model with it',
3030
{ testIsolation: false },
3131
() => {
3232
let testData: DeployOCIModelData;
@@ -58,7 +58,7 @@ describe(
5858
it(
5959
'Verify User Can Create an OCI Connection in DS Connections Page And Deploy the Model',
6060
{
61-
tags: ['@Smoke', '@SmokeSet3', '@Dashboard', '@Modelserving', '@NonConcurrent'],
61+
tags: ['@Smoke', '@SmokeSet3', '@Dashboard', '@Modelserving', '@NonConcurrent', '@Bug'],
6262
},
6363
() => {
6464
cy.step(`Navigate to DS Project ${projectName}`);

frontend/src/__tests__/cypress/cypress/tests/e2e/dataScienceProjects/models/testModelPvcDeployment.cy.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ const awsBucketRegion = AWS_BUCKETS.BUCKET_1.REGION;
3939
const podName = 'pvc-loader-pod';
4040
const uuid = generateTestUUID();
4141

42-
describe('Verify a model can be deployed from a PVC', () => {
42+
describe('[Product Bug: RHOAIENG-30799] Verify a model can be deployed from a PVC', () => {
4343
retryableBefore(() => {
4444
Cypress.on('uncaught:exception', (err) => {
4545
if (err.message.includes('Error: secrets "ds-pipeline-config" already exists')) {
@@ -69,7 +69,7 @@ describe('Verify a model can be deployed from a PVC', () => {
6969
});
7070
it(
7171
'should deploy a model from a PVC',
72-
{ tags: ['@Smoke', '@SmokeSet3', '@Dashboard', '@Modelserving'] },
72+
{ tags: ['@Smoke', '@SmokeSet3', '@Dashboard', '@Modelserving', '@Bug'] },
7373
() => {
7474
cy.step('log into application with ${HTPASSWD_CLUSTER_ADMIN_USER.USERNAME}');
7575
cy.visitWithLogin('/', HTPASSWD_CLUSTER_ADMIN_USER);

frontend/src/__tests__/cypress/cypress/tests/e2e/dataScienceProjects/models/testModelStopStart.cy.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ let modelFilePath: string;
2323
const awsBucket = 'BUCKET_1' as const;
2424
const uuid = generateTestUUID();
2525

26-
describe('A model can be stopped and started', () => {
26+
describe('[Product Bug: RHOAIENG-30799] A model can be stopped and started', () => {
2727
retryableBefore(() => {
2828
cy.log('Loading test data');
2929
return loadDSPFixture('e2e/dataScienceProjects/testModelStopStart.yaml').then(
@@ -56,7 +56,7 @@ describe('A model can be stopped and started', () => {
5656
it(
5757
'Verify that a model can be stopped and started',
5858
{
59-
tags: ['@Smoke', '@SmokeSet3', '@Dashboard', '@Modelserving', '@NonConcurrent'],
59+
tags: ['@Smoke', '@SmokeSet3', '@Dashboard', '@Modelserving', '@NonConcurrent', '@Bug'],
6060
},
6161
() => {
6262
cy.log('Model Name:', modelName);

frontend/src/__tests__/cypress/cypress/tests/e2e/dataScienceProjects/models/testMultiModelAdminCreation.cy.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ let modelFilePath: string;
2525
const awsBucket = 'BUCKET_1' as const;
2626
const uuid = generateTestUUID();
2727

28-
describe('Verify Admin Multi Model Creation and Validation using the UI', () => {
28+
describe('[Product Bug: RHOAIENG-30799] Verify Admin Multi Model Creation and Validation using the UI', () => {
2929
retryableBefore(() => {
3030
// Setup: Load test data and ensure clean state
3131
return loadDSPFixture('e2e/dataScienceProjects/testMultiModelAdminCreation.yaml').then(
@@ -65,6 +65,7 @@ describe('Verify Admin Multi Model Creation and Validation using the UI', () =>
6565
'@Dashboard',
6666
'@Modelserving',
6767
'@NonConcurrent',
68+
'@Bug',
6869
],
6970
},
7071
() => {

frontend/src/__tests__/cypress/cypress/tests/e2e/dataScienceProjects/models/testSingleModelAdminCreation.cy.ts

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ let modelFilePath: string;
2424
const awsBucket = 'BUCKET_1' as const;
2525
const uuid = generateTestUUID();
2626

27-
describe('Verify Admin Single Model Creation and Validation using the UI', () => {
27+
describe('[Product Bug: RHOAIENG-30799] Verify Admin Single Model Creation and Validation using the UI', () => {
2828
retryableBefore(() => {
2929
// Setup: Load test data and ensure clean state
3030
return loadDSPFixture('e2e/dataScienceProjects/testSingleModelAdminCreation.yaml').then(
@@ -56,7 +56,15 @@ describe('Verify Admin Single Model Creation and Validation using the UI', () =>
5656
it(
5757
'Verify that an Admin can Serve, Query a Single Model using both the UI and External links',
5858
{
59-
tags: ['@Smoke', '@SmokeSet3', '@ODS-2626', '@Dashboard', '@Modelserving', '@NonConcurrent'],
59+
tags: [
60+
'@Smoke',
61+
'@SmokeSet3',
62+
'@ODS-2626',
63+
'@Dashboard',
64+
'@Modelserving',
65+
'@NonConcurrent',
66+
'@Bug',
67+
],
6068
},
6169
() => {
6270
cy.log('Model Name:', modelName);

frontend/src/__tests__/cypress/cypress/tests/e2e/dataScienceProjects/models/testSingleModelContributorCreation.cy.ts

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ let modelFilePath: string;
2727
const awsBucket = 'BUCKET_3' as const;
2828
const uuid = generateTestUUID();
2929

30-
describe('Verify Model Creation and Validation using the UI', () => {
30+
describe('[Product Bug: RHOAIENG-30799] Verify Model Creation and Validation using the UI', () => {
3131
retryableBefore(() => {
3232
// Setup: Load test data and ensure clean state
3333
return loadDSPFixture('e2e/dataScienceProjects/testSingleModelContributorCreation.yaml').then(
@@ -61,7 +61,15 @@ describe('Verify Model Creation and Validation using the UI', () => {
6161
it(
6262
'Verify that a Non Admin can Serve and Query a Model using the UI',
6363
{
64-
tags: ['@Smoke', '@SmokeSet3', '@ODS-2552', '@Dashboard', '@Modelserving', '@NonConcurrent'],
64+
tags: [
65+
'@Smoke',
66+
'@SmokeSet3',
67+
'@ODS-2552',
68+
'@Dashboard',
69+
'@Modelserving',
70+
'@NonConcurrent',
71+
'@Bug',
72+
],
6573
},
6674
() => {
6775
cy.log('Model Name:', modelName);

frontend/src/__tests__/cypress/cypress/tests/e2e/settings/servingRuntimes/testSingleServingRuntimeCreation.cy.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,10 @@ retryableBefore(() => {
3535
return cleanupTemplates(metadataSingleDisplayName);
3636
});
3737
});
38-
describe('Verify Admins Can Import and Delete a Custom Single-Model Serving Runtime Template By Uploading A YAML file', () => {
38+
describe('[Product Bug: RHOAIENG-30799] Verify Admins Can Import and Delete a Custom Single-Model Serving Runtime Template By Uploading A YAML file', () => {
3939
it(
4040
'Admin should access serving runtimes, import a yaml file and then delete',
41-
{ tags: ['@Smoke', '@SmokeSet2', '@ODS-2276', '@Dashboard', '@NonConcurrent'] },
41+
{ tags: ['@Smoke', '@SmokeSet2', '@ODS-2276', '@Dashboard', '@NonConcurrent', '@Bug'] },
4242
() => {
4343
// Authentication and navigation
4444
cy.step('Log into the application');

0 commit comments

Comments
 (0)