Skip to content

Commit

Permalink
E2E Test: modify duckdb tests to leverage retries (#5725)
Browse files Browse the repository at this point in the history
Removing some "sleeps" that were in place before
#5655 was implemented

### QA Notes

All smoke tests should pass
testlabauto authored Dec 13, 2024
1 parent cff3f12 commit 2584800
Showing 2 changed files with 2 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -14,9 +14,7 @@ test.use({
test.describe('Headless Data Explorer - Large Data Frame', {
tag: [tags.WEB, tags.DATA_EXPLORER, tags.DUCK_DB, tags.WIN]
}, () => {
// python fixture not actually needed but serves as a long wait so that we can be sure
// headless/duckdb open will work
test.beforeEach(async function ({ app, python }) {
test.beforeEach(async function ({ app }) {
await app.workbench.positronLayouts.enterLayout('stacked');
});

4 changes: 1 addition & 3 deletions test/e2e/features/data-explorer/duckdb-sparklines.test.ts
Original file line number Diff line number Diff line change
@@ -13,9 +13,7 @@ test.use({
test.describe('Data Explorer - DuckDB Column Summary', {
tag: [tags.WEB, tags.WIN, tags.CRITICAL, tags.DATA_EXPLORER, tags.DUCK_DB]
}, () => {
// python fixture not actually needed but serves as a long wait so that we can be sure
// headless/duckdb open will work
test('Verifies basic duckdb column summary functionality [C1053635]', async function ({ app, python }) {
test('Verifies basic duckdb column summary functionality [C1053635]', async function ({ app }) {

await app.workbench.positronQuickaccess.openDataFile(join(app.workspacePathOrFolder, 'data-files', '100x100', '100x100.parquet'));

0 comments on commit 2584800

Please sign in to comment.