Skip to content

Commit 8d76f0f

Browse files
committed
Provide reason for skipping tests
1 parent 33e6264 commit 8d76f0f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

testapp/runner.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@ def build_suite(self, *args, **kwargs):
1616
continue
1717
fullname = f'{cls.__module__}.{cls.__name__}.{attr}'
1818
if len(list(filter(fullname.startswith, EXCLUDED_TESTS))):
19-
setattr(cls, attr, skip(getattr(cls, attr)))
19+
setattr(cls, attr, skip('Does not work on MSSQL')(getattr(cls, attr)))
2020

2121
return suite

0 commit comments

Comments
 (0)