Skip to content

Commit

Permalink
chore: bump CI permitted retry, disable two flaky tests
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 committed Jul 30, 2024
1 parent 2acb9d8 commit 529c23b
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 @@ -106,7 +106,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 @@ -121,7 +121,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 529c23b

Please sign in to comment.