Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

E2E Test: modify duckdb tests to leverage retries #5725

Merged
merged 1 commit into from
Dec 13, 2024
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -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');
});

Expand Down
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
Expand Up @@ -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'));

Expand Down
Loading