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

Fix test that is unreliable on Windows. #34

Merged
merged 1 commit into from
Jul 11, 2024
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
11 changes: 6 additions & 5 deletions datasalad/iterable_subprocess/test_iterable_subprocess.py
Original file line number Diff line number Diff line change
Expand Up @@ -415,10 +415,11 @@ def test_returncode_available_from_generator_with_exception():
while True:
next(echo)
# On a Linux system, all exceptions that are raised before the subprocess
# exited will lead to a -15 return code. If StopIteration is raised, the
# exited will lead to a -15 return code. On a Windows system, exceptions
# will lead to a 1 return code. If StopIteration is raised, the
# subprocess will either have terminated which results in a 0-return code,
# or the subprocess is still running and will therefore be terminated which
# results in a -15 return code. Any other exception than StopIteration,
# e.g. a CommandError because echo could not be found, would lead to an
# early test-exit and not proceed to the assign-statement.
assert echo.returncode in (0, -15)
# results in a -15 or a 1 return code. Any other exception than
# StopIteration, e.g. a CommandError because echo could not be found, would
# lead to an early test-exit and not proceed to the assign-statement.
assert echo.returncode in (0, 1, -15)