Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/mysql-nightly-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,8 @@ jobs:
npx playwright test \
--project=setup \
--project=DataAssetRulesEnabled \
--project=DataAssetRulesDisabled
--project=DataAssetRulesDisabled \
--project=IsolatedTests

else
# Shards 2-6 handle chromium tests (5 workers total)
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/playwright-postgresql-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,8 @@ jobs:
npx playwright test \
--project=setup \
--project=DataAssetRulesEnabled \
--project=DataAssetRulesDisabled
--project=DataAssetRulesDisabled \
--project=IsolatedTests

else
# Shards 2-6 handle chromium tests (5 workers total)
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/postgresql-nightly-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,8 @@ jobs:
npx playwright test \
--project=setup \
--project=DataAssetRulesEnabled \
--project=DataAssetRulesDisabled
--project=DataAssetRulesDisabled \
--project=IsolatedTests


else
Expand Down
8 changes: 8 additions & 0 deletions openmetadata-ui/src/main/resources/ui/playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ export default defineConfig({
'**/DataAssetRulesEnabled.spec.ts',
'**/DataAssetRulesDisabled.spec.ts',
'**/SystemCertificationTags.spec.ts',
'**/AutoPilot.spec.ts',
],
},
{
Expand Down Expand Up @@ -119,6 +120,13 @@ export default defineConfig({
dependencies: ['DataAssetRulesEnabled'],
fullyParallel: true,
},
{
name: 'IsolatedTests',
testMatch: '**/AutoPilot.spec.ts',
use: { ...devices['Desktop Chrome'] },
dependencies: ['setup'],
fullyParallel: true,
},
// System Certification Tags tests modify global shared state (system tags like Gold, Silver, Bronze)
// They must run in isolation after the main chromium project to avoid flakiness
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,9 @@ services.forEach((ServiceClass) => {

test.describe.serial(
service.serviceType,
PLAYWRIGHT_INGESTION_TAG_OBJ,
{
tag: [PLAYWRIGHT_INGESTION_TAG_OBJ.tag, '@dataAssetRules'],
},
() => {
const testData = {
service: {
Expand Down
Loading