Skip to content

Commit bd6d276

Browse files
authored
Run latest python instead of 3.9 (#4371)
1 parent 5089ef7 commit bd6d276

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/project/createNewPythonProject.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ suite('Create New Python Project (Model V2)', () => {
7575
}
7676
this.timeout(2 * 60 * 1000);
7777

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

0 commit comments

Comments
 (0)