Message268015
It’s a bit ugly, but I would write the test so that it is recorded as skipped:
try:
os.copy_file_range(...)
except OSError as err:
if err.errno != ENOSYS:
raise # We get to see the full exception details
self.skipTest(err) # Test is recorded as skipped, not passed |
|
| Date |
User |
Action |
Args |
| 2016-06-09 10:55:45 | martin.panter | set | recipients:
+ martin.panter, vstinner, christian.heimes, StyXman, neologix |
| 2016-06-09 10:55:45 | martin.panter | set | messageid: <[email protected]> |
| 2016-06-09 10:55:45 | martin.panter | link | issue26826 messages |
| 2016-06-09 10:55:45 | martin.panter | create | |
|