We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 59229fe commit 819efebCopy full SHA for 819efeb
tests/__init__.py
@@ -120,3 +120,7 @@ def skip_if_36(self):
120
def skip_if_32bit(self):
121
if struct.calcsize("P") * 8 == 32:
122
self.skipTest('Tests only available for 64bit systems')
123
+
124
+ def skip_if_windows(self):
125
+ if sys.platform == 'win32':
126
+ self.skipTest('Tests only available for UNIX systems')
0 commit comments