add python.testing.cwd to pytest discovery if present (#24384)

fixes https://github.com/microsoft/vscode-python/issues/9553
This commit is contained in:
Eleanor Boyd 2024-11-04 11:56:25 -08:00 коммит произвёл GitHub
Родитель 379229aa4c
Коммит 622653efd8
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
2 изменённых файлов: 14 добавлений и 1 удалений

Просмотреть файл

@ -84,6 +84,9 @@ export class PytestTestDiscoveryAdapter implements ITestDiscoveryAdapter {
traceWarn("Symlink found, adding '--rootdir' to pytestArgs only if it doesn't already exist. cwd: ", cwd);
pytestArgs = addValueIfKeyNotExist(pytestArgs, '--rootdir', cwd);
}
// if user has provided `--rootdir` then use that, otherwise add `cwd`
// root dir is required so pytest can find the relative paths and for symlinks
addValueIfKeyNotExist(pytestArgs, '--rootdir', cwd);
// get and edit env vars
const mutableEnv = {

Просмотреть файл

@ -179,7 +179,17 @@ suite('pytest test discovery adapter', () => {
// verification
const expectedArgs = ['-m', 'pytest', '-p', 'vscode_pytest', '--collect-only', '.', 'abc', 'xyz'];
const expectedArgs = [
'-m',
'pytest',
'-p',
'vscode_pytest',
'--collect-only',
'.',
'abc',
'xyz',
`--rootdir=${expectedPathNew}`,
];
execService.verify(
(x) =>
x.execObservable(