Skip to content
Merged
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
12 changes: 9 additions & 3 deletions vscode/extension/tests/python_env.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,9 @@ test.describe('python environment variable injection on sqlmesh_lsp', () => {
}
})

test('normal setup - set', async ({ page }) => {
test('normal setup - set', async ({ page }, testInfo) => {
testInfo.setTimeout(120_000)

const [tempDir, _] = await setupEnvironment()
writeEnvironmentConfig(tempDir)
const env_file = path.join(tempDir, '.env')
Expand Down Expand Up @@ -126,7 +128,9 @@ async function setupTcloudProject(
}

test.describe('tcloud version', () => {
test('normal setup - error ', async ({ page }) => {
test('normal setup - error ', async ({ page }, testInfo) => {
testInfo.setTimeout(120_000)

const [tempDir, pythonDetails] = await setupEnvironment()
await setupTcloudProject(tempDir, pythonDetails)
writeEnvironmentConfig(tempDir)
Expand All @@ -141,7 +145,9 @@ test.describe('tcloud version', () => {
}
})

test('normal setup - set', async ({ page }) => {
test('normal setup - set', async ({ page }, testInfo) => {
testInfo.setTimeout(120_000)

const [tempDir, pythonDetails] = await setupEnvironment()
await setupTcloudProject(tempDir, pythonDetails)
writeEnvironmentConfig(tempDir)
Expand Down