Skip to content

Commit

Permalink
tests/run_compound.py: remove special-case diagnostics for Windows+Py…
Browse files Browse the repository at this point in the history
…thon-3.10.
  • Loading branch information
julian-smith-artifex-com committed Aug 21, 2023
1 parent defa1be commit 52f22a1
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions tests/run_compound.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,12 +74,6 @@ def main():

log( f'{e1=} {e2=} {e3=}')

if platform.system() == 'Windows' and platform.python_version().startswith('3.10.'):
if e2 or e3:
log( 'Ignoring expected error.')
e2 = e3 = 0
else:
log( f'Unexpected success on Windows with Python 3.10.')
if e1 or e2 or e3:
raise Exception( f'Failure: {e1=} {e2=} {e3=}')

Expand Down

0 comments on commit 52f22a1

Please sign in to comment.