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 e71507c commit 5f0c09fCopy full SHA for 5f0c09f
Testing/SystemTests/tests/framework/PowderReduceP2DTest.py
@@ -13,9 +13,14 @@
13
class PowderReduceP2DTest(systemtesting.MantidSystemTest):
14
def __init__(self):
15
systemtesting.MantidSystemTest.__init__(self)
16
- self.tolerance = 1.0e-6
+ self.tolerance = 1e-6
17
self.setUp()
18
19
+ def skipTests(self):
20
+ # Now working on macOS but producing different outputs on windows.
21
+ # Skipped while investigation continues.
22
+ return sys.platform.startswith("win")
23
+
24
def setUp(self):
25
self.sample = self._sampleEventData()
26
self.vana = self._vanadiumEventData()
0 commit comments