fix: Revert "fix: re-enable cypress checks" (#32045)

This commit is contained in:
Maxime Beauchemin 2025-01-30 09:20:55 -08:00 committed by GitHub
parent b12f515185
commit 568f6d958b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with 8 additions and 10 deletions

1
.gitignore vendored
View File

@ -21,7 +21,6 @@
*.swp *.swp
__pycache__ __pycache__
.aider.*
.local .local
.cache .cache
.bento* .bento*

View File

@ -60,7 +60,6 @@ def run_cypress_for_test_file(
f"--browser {browser} " f"--browser {browser} "
f"--record --group {group_id} --tag {REPO},{GITHUB_EVENT_NAME} " f"--record --group {group_id} --tag {REPO},{GITHUB_EVENT_NAME} "
f"--ci-build-id {build_id} " f"--ci-build-id {build_id} "
f"--wait-for-missing-groups "
f"-- {chrome_flags}" f"-- {chrome_flags}"
) )
else: else:

View File

@ -599,7 +599,7 @@ describe('Drill by modal', () => {
]); ]);
}); });
it('Radar Chart', () => { it.skip('Radar Chart', () => {
testEchart('radar', 'Radar Chart', [ testEchart('radar', 'Radar Chart', [
[182, 49], [182, 49],
[423, 91], [423, 91],

View File

@ -335,7 +335,7 @@ describe('Drill to detail modal', () => {
}); });
}); });
describe('Bar Chart', () => { describe.skip('Bar Chart', () => {
it('opens the modal with the correct filters', () => { it('opens the modal with the correct filters', () => {
interceptSamples(); interceptSamples();
@ -373,7 +373,7 @@ describe('Drill to detail modal', () => {
}); });
}); });
describe('Area Chart', () => { describe.skip('Area Chart', () => {
it('opens the modal with the correct filters', () => { it('opens the modal with the correct filters', () => {
testTimeChart('echarts_area'); testTimeChart('echarts_area');
}); });
@ -407,7 +407,7 @@ describe('Drill to detail modal', () => {
}); });
}); });
describe('World Map', () => { describe.skip('World Map', () => {
it('opens the modal with the correct filters', () => { it('opens the modal with the correct filters', () => {
interceptSamples(); interceptSamples();
@ -567,7 +567,7 @@ describe('Drill to detail modal', () => {
}); });
}); });
describe('Radar Chart', () => { describe.skip('Radar Chart', () => {
it('opens the modal with the correct filters', () => { it('opens the modal with the correct filters', () => {
interceptSamples(); interceptSamples();

View File

@ -176,7 +176,7 @@ describe('Horizontal FilterBar', () => {
validateFilterNameOnDashboard(testItems.topTenChart.filterColumn); validateFilterNameOnDashboard(testItems.topTenChart.filterColumn);
}); });
it('should spot changes in "more filters" and apply their values', () => { it.skip('should spot changes in "more filters" and apply their values', () => {
cy.intercept(`/api/v1/chart/data?form_data=**`).as('chart'); cy.intercept(`/api/v1/chart/data?form_data=**`).as('chart');
prepareDashboardFilters([ prepareDashboardFilters([
{ name: 'test_1', column: 'country_name', datasetId: 2 }, { name: 'test_1', column: 'country_name', datasetId: 2 },
@ -204,7 +204,7 @@ describe('Horizontal FilterBar', () => {
); );
}); });
it('should focus filter and open "more filters" programmatically', () => { it.skip('should focus filter and open "more filters" programmatically', () => {
prepareDashboardFilters([ prepareDashboardFilters([
{ name: 'test_1', column: 'country_name', datasetId: 2 }, { name: 'test_1', column: 'country_name', datasetId: 2 },
{ name: 'test_2', column: 'country_code', datasetId: 2 }, { name: 'test_2', column: 'country_code', datasetId: 2 },
@ -231,7 +231,7 @@ describe('Horizontal FilterBar', () => {
cy.get('.ant-select-focused').should('be.visible'); cy.get('.ant-select-focused').should('be.visible');
}); });
it('should show tag count and one plain tag on focus and only count on blur in select ', () => { it.skip('should show tag count and one plain tag on focus and only count on blur in select ', () => {
prepareDashboardFilters([ prepareDashboardFilters([
{ name: 'test_1', column: 'country_name', datasetId: 2 }, { name: 'test_1', column: 'country_name', datasetId: 2 },
]); ]);