Skip to content
Snippets Groups Projects
Unverified Commit 84354dbc authored by Savici, Andrei T.'s avatar Savici, Andrei T. Committed by GitHub
Browse files

Merge pull request #23113 from mantidproject/archivesearch_in_systemtests

Enable archive search in system tests
parents f3d9d18a 9b3ebcd8
No related branches found
No related tags found
No related merge requests found
...@@ -778,7 +778,7 @@ class TestManager(object): ...@@ -778,7 +778,7 @@ class TestManager(object):
for suite in self._tests[self._lastTestRun:]: for suite in self._tests[self._lastTestRun:]:
suite.setOutputMsg(reason) suite.setOutputMsg(reason)
suite.reportResults(self._reporters) # just let people know you were skipped suite.reportResults(self._reporters) # just let people know you were skipped
def loadTestsFromDir(self, test_dir): def loadTestsFromDir(self, test_dir):
''' Load all of the tests defined in the given directory''' ''' Load all of the tests defined in the given directory'''
entries = os.listdir(test_dir) entries = os.listdir(test_dir)
...@@ -945,7 +945,7 @@ class MantidFrameworkConfig: ...@@ -945,7 +945,7 @@ class MantidFrameworkConfig:
# Do not update instrument definitions # Do not update instrument definitions
config['UpdateInstrumentDefinitions.OnStartup'] = "0" config['UpdateInstrumentDefinitions.OnStartup'] = "0"
# Do not perform a version check # Do not perform a version check
config['CheckMantidVersion.OnStartup'] = "0" config['CheckMantidVersion.OnStartup'] = "0"
...@@ -954,10 +954,11 @@ class MantidFrameworkConfig: ...@@ -954,10 +954,11 @@ class MantidFrameworkConfig:
# Case insensitive # Case insensitive
config['filefinder.casesensitive'] = 'Off' config['filefinder.casesensitive'] = 'Off'
# datasearch # datasearch
if self.__datasearch: if self.__datasearch:
config["datasearch.searcharchive"] = 'On' # turn on for 'all' facilties, 'on' is only for default facility
config["datasearch.searcharchive"] = 'all'
config['network.default.timeout'] = '5' config['network.default.timeout'] = '5'
# Save this configuration # Save this configuration
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment