From 03ccce6fb3cc0c90fa4b1c6443d8c2e874cf832b Mon Sep 17 00:00:00 2001 From: Sam Jenkins <s.jenkins@stfc.ac.uk> Date: Wed, 8 May 2019 11:50:32 +0100 Subject: [PATCH] re #25670 moved tolerance setting and made test not check sample --- .../SystemTests/tests/analysis/ISIS_PowderPolarisTest.py | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/Testing/SystemTests/tests/analysis/ISIS_PowderPolarisTest.py b/Testing/SystemTests/tests/analysis/ISIS_PowderPolarisTest.py index 893bf32c040..57040b82848 100644 --- a/Testing/SystemTests/tests/analysis/ISIS_PowderPolarisTest.py +++ b/Testing/SystemTests/tests/analysis/ISIS_PowderPolarisTest.py @@ -80,7 +80,6 @@ class FocusTest(systemtesting.MantidSystemTest): focus_results = None existing_config = config['datasearch.directories'] - tolerance = 1e-11 def requiredFiles(self): return _gen_required_files() @@ -93,6 +92,7 @@ class FocusTest(systemtesting.MantidSystemTest): def validate(self): for ws in self.focus_results: self.assertEqual(ws.sample().getMaterial().name(), 'Si') + self.tolerance = 1e-7 return self.focus_results.getName(), "ISIS_Powder-POLARIS98533_FocusSempty.nxs" def cleanup(self): @@ -108,7 +108,9 @@ class FocusTestChopperMode(systemtesting.MantidSystemTest): focus_results = None existing_config = config['datasearch.directories'] - tolerance = 1e-11 + + + def requiredFiles(self): return _gen_required_files() @@ -122,6 +124,9 @@ class FocusTestChopperMode(systemtesting.MantidSystemTest): # This will only pass if instead of failing or deafaulting to PDF it correctly picks Rietveld for ws in self.focus_results: self.assertEqual(ws.sample().getMaterial().name(), 'Si') + # this needs to be put in due to rounding errors between OS' for the proton_charge_by_period log + self.disableChecking.append('Sample') + self.tolerance = 1e-7 return self.focus_results.getName(), "ISIS_Powder-POLARIS98533_Auto_chopper.nxs" def cleanup(self): -- GitLab