Message268015
| Author | martin.panter |
|---|---|
| Recipients | StyXman, christian.heimes, martin.panter, neologix, vstinner |
| Date | 2016-06-09.10:55:45 |
| SpamBayes Score | -1.0 |
| Marked as misclassified | Yes |
| Message-id | <1465469745.13.0.887165776008.issue26826@psf.upfronthosting.co.za> |
| In-reply-to |
| Content | |
|---|---|
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 |
|
| History | |||
|---|---|---|---|
| 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: <1465469745.13.0.887165776008.issue26826@psf.upfronthosting.co.za> |
| 2016-06-09 10:55:45 | martin.panter | link | issue26826 messages |
| 2016-06-09 10:55:45 | martin.panter | create | |