diff options
Diffstat (limited to 'mpv-test.py')
-rwxr-xr-x | mpv-test.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/mpv-test.py b/mpv-test.py index 23a3d3a..10bb71b 100755 --- a/mpv-test.py +++ b/mpv-test.py @@ -38,11 +38,9 @@ class TestProperties(unittest.TestCase): for name, (ptype, access) in mpv.ALL_PROPERTIES.items(): if 'r' in access: name = name.replace('-', '_') - try: + with self.subTest(property_name=name): with self.swallow_mpv_errors(): rv = getattr(self.m, name) - except Exception as e: - raise RuntimeError('Error while testing property', name) if rv is not None: # Technically, any property can return None (even if of type e.g. int) self.assertEqual(type(rv), ptype, msg=name) |