Skip to content

Commit

Permalink
Run latest python instead of 3.9 (#4371)
Browse files Browse the repository at this point in the history
  • Loading branch information
nturinski authored Feb 4, 2025
1 parent 5089ef7 commit bd6d276
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/project/createNewPythonProject.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ suite('Create New Python Project (Model V2)', () => {
}
this.timeout(2 * 60 * 1000);

const alias: string = process.platform === 'win32' ? 'py -3.9' : 'python3.9';
const alias: string = process.platform === 'win32' ? 'py' : 'python';
await runWithTestActionContext('createProject', async context => {
await createAndValidateProject(context, { ...getPythonValidateOptions('.venv', FuncVersion.v4, PythonModelVersion.v2), inputs: [modelV2Input, /enter/i, alias] });
});
Expand Down

0 comments on commit bd6d276

Please sign in to comment.