We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ee2b5c6 commit d9226caCopy full SHA for d9226ca
__tests__/finder.test.ts
@@ -31,11 +31,11 @@ import * as finder from '../src/find-python';
31
32
describe('Finder tests', () => {
33
it('Finds Python if it is installed', async () => {
34
- const pythonDir: string = path.join(toolDir, 'python', '2.0.0', 'x64');
+ const pythonDir: string = path.join(toolDir, 'python', '3.0.0', 'x64');
35
await io.mkdirP(pythonDir);
36
fs.writeFileSync(`${pythonDir}.complete`, 'hello');
37
// This will throw if it doesn't find it in the cache (because no such version exists)
38
- await finder.findPythonVersion('2.x', 'x64');
+ await finder.findPythonVersion('3.x', 'x64');
39
});
40
41
it('Errors if Python is not installed', async () => {
0 commit comments