Skip to content

Commit

Permalink
account for odd travis PoolRunningError
Browse files Browse the repository at this point in the history
  • Loading branch information
mmckerns committed Jun 14, 2021
1 parent 0818e8b commit a32957e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_join.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
from pathos.helpers import cpu_count

import sys
P33 = (sys.hexversion >= 0x30300f0)
P37 = (sys.hexversion >= 0x30700f0)
P33 = (sys.hexversion >= 0x30300f0) #FIXME: below oddity due to travis
P37 = (sys.hexversion >= 0x30700f0) and sys.version_info[:3] != (3,7,7)
PoolClosedError = ValueError if P33 else AssertionError
PoolRunningError = ValueError if P37 else AssertionError

Expand Down

0 comments on commit a32957e

Please sign in to comment.