remove pypy input

This commit is contained in:
Dmitry Shibanov 2022-02-21 14:50:31 +03:00
parent 7f80679172
commit fe5cc5b5b4
3 changed files with 2 additions and 26 deletions

View file

@ -87,12 +87,4 @@ describe('Finder tests', () => {
}
expect(thrown).toBeTruthy();
});
it('Finds PyPy if it is installed', async () => {
const pythonDir: string = path.join(toolDir, 'PyPy', '2.0.0', 'x64');
await io.mkdirP(pythonDir);
fs.writeFileSync(`${pythonDir}.complete`, 'hello');
// This will throw if it doesn't find it in the cache (because no such version exists)
await finder.findPythonVersion('pypy2', 'x64');
});
});