Skip to content
Closed
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 @@ -38,7 +38,7 @@ test.describe('New Folder Flow: Python Project', { tag: [tags.MODAL, tags.NEW_FO

// untagged windows because we cannot find any way to copy text from the terminal now that its a canvas
// passing in python to ensure a valid version is used
test('New env: Git initialized', { tag: [tags.CRITICAL] }, async function ({ app, settings, python }) {
test('New env: Git initialized', { tag: [tags.CRITICAL] }, async function ({ app, settings, python, sessions }) {
const folderName = addRandomNumSuffix('git-init');
await settings.set({ 'files.exclude': { '**/.git': false, '**/.gitignore': false } }, { waitMs: 1000 });

Expand All @@ -48,6 +48,7 @@ test.describe('New Folder Flow: Python Project', { tag: [tags.MODAL, tags.NEW_FO
initGitRepo: true,
status: 'new',
pythonEnv: 'venv',
interpreterPath: (await sessions.getSelectedSessionInfo()).path, // remove when https://github.com/posit-dev/positron/issues/9365 is fixed
createPyprojectToml: true,
});

Expand Down
Loading