Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

tests: contextlib.suppress does not return anything #9444

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 5 additions & 8 deletions tests/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -333,16 +333,13 @@ def switch_working_directory(path: Path, remove: bool = False) -> Iterator[Path]
original_cwd = Path.cwd()
os.chdir(path)

with contextlib.suppress(Exception) as exception:
try:
yield path
finally:
os.chdir(original_cwd)

os.chdir(original_cwd)

if remove:
shutil.rmtree(path, ignore_errors=True)

if exception is not None:
raise exception
if remove:
shutil.rmtree(path, ignore_errors=True)


@contextlib.contextmanager
Expand Down
Loading