Skip to content

Commit

Permalink
chore: bump CI permitted retry, disable two flaky tests (#6919)
Browse files Browse the repository at this point in the history
chore: skip clone-and-immediately-activate-task-test

chore: skip flaky scriptquery test
  • Loading branch information
wdoconnell authored and jdstrand committed Jan 23, 2025
1 parent e901635 commit 2c739dd
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cypress.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"retries": {
"runMode": 2,
"runMode": 3,
"openMode": 0
},
"numTestsKeptInMemory": 25,
Expand Down
3 changes: 2 additions & 1 deletion cypress/e2e/shared/scriptQueryBuilder.results.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,8 @@ describe('Script Builder', () => {
})
})

it('will allow querying of different data ranges', () => {
// Temporarily disabled due to excess flake. Do not re-enable without rewriting this test.
it.skip('will allow querying of different data ranges', () => {
cy.log('Ensure LSP is online') // deflake
cy.wait(DELAY_FOR_LSP_SERVER_BOOTUP)

Expand Down
3 changes: 2 additions & 1 deletion cypress/e2e/shared/tasks-searching.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,8 @@ describe('When tasks already exist', () => {
})
})

it('can clone a task and activate just the cloned one', () => {
// Skipped as too flaky - reintroduce only after rewriting.
it.skip('can clone a task and activate just the cloned one', () => {
const firstLabel = 'very important task'
const secondLabel = 'mission critical'

Expand Down

0 comments on commit 2c739dd

Please sign in to comment.