mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-15 09:06:25 +00:00
98393c0b9b
Closes #5671
59 lines
1.5 KiB
Text
59 lines
1.5 KiB
Text
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`lib/manager/pip_setup/extract getPythonAlias returns the python alias to use 1`] = `"python3.8"`;
|
|
|
|
exports[`lib/manager/pip_setup/extract getPythonAlias returns the python alias to use 2`] = `
|
|
Array [
|
|
Object {
|
|
"cmd": "python --version",
|
|
"options": Object {
|
|
"cwd": null,
|
|
"encoding": "utf-8",
|
|
"env": Object {
|
|
"HOME": "/home/user",
|
|
"HTTPS_PROXY": "https://example.com",
|
|
"HTTP_PROXY": "http://example.com",
|
|
"LANG": "en_US.UTF-8",
|
|
"LC_ALL": "en_US",
|
|
"NO_PROXY": "localhost",
|
|
"PATH": "/tmp/path",
|
|
},
|
|
"timeout": 900000,
|
|
},
|
|
},
|
|
Object {
|
|
"cmd": "python3 --version",
|
|
"options": Object {
|
|
"cwd": null,
|
|
"encoding": "utf-8",
|
|
"env": Object {
|
|
"HOME": "/home/user",
|
|
"HTTPS_PROXY": "https://example.com",
|
|
"HTTP_PROXY": "http://example.com",
|
|
"LANG": "en_US.UTF-8",
|
|
"LC_ALL": "en_US",
|
|
"NO_PROXY": "localhost",
|
|
"PATH": "/tmp/path",
|
|
},
|
|
"timeout": 900000,
|
|
},
|
|
},
|
|
Object {
|
|
"cmd": "python3.8 --version",
|
|
"options": Object {
|
|
"cwd": null,
|
|
"encoding": "utf-8",
|
|
"env": Object {
|
|
"HOME": "/home/user",
|
|
"HTTPS_PROXY": "https://example.com",
|
|
"HTTP_PROXY": "http://example.com",
|
|
"LANG": "en_US.UTF-8",
|
|
"LC_ALL": "en_US",
|
|
"NO_PROXY": "localhost",
|
|
"PATH": "/tmp/path",
|
|
},
|
|
"timeout": 900000,
|
|
},
|
|
},
|
|
]
|
|
`;
|