Merge pull request #9800 from Zac-HD/fix-311-ci

This commit is contained in:
Bruno Oliveira 2022-03-21 08:18:39 -03:00 committed by GitHub
commit d5ce9f5a16
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 8 deletions

View File

@ -660,7 +660,6 @@ class Test_getinitialnodes:
subdir = tmp_path.joinpath("subdir")
x = ensure_file(subdir / "x.py")
ensure_file(subdir / "__init__.py")
with subdir.cwd():
config = pytester.parseconfigure(x)
col = pytester.getnode(config, x)
assert col is not None
@ -1188,7 +1187,6 @@ def test_collect_with_chdir_during_import(pytester: Pytester) -> None:
"""
% (str(subdir),)
)
with pytester.path.cwd():
result = pytester.runpytest()
result.stdout.fnmatch_lines(["*1 passed in*"])
assert result.ret == 0
@ -1200,7 +1198,6 @@ def test_collect_with_chdir_during_import(pytester: Pytester) -> None:
testpaths = .
"""
)
with pytester.path.cwd():
result = pytester.runpytest("--collect-only")
result.stdout.fnmatch_lines(["collected 1 item"])
@ -1224,7 +1221,6 @@ def test_collect_pyargs_with_testpaths(
)
)
monkeypatch.setenv("PYTHONPATH", str(pytester.path), prepend=os.pathsep)
with root.cwd():
result = pytester.runpytest_subprocess()
result.stdout.fnmatch_lines(["*1 passed in*"])