Skip to content

Commit

Permalink
Re #8882. Quick test to see effect of not checking for paraview.
Browse files Browse the repository at this point in the history
Hoping that tests will run faster on the mac.
  • Loading branch information
RussellTaylor committed Mar 12, 2014
1 parent d10d8e6 commit 934b102
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Code/Mantid/Framework/Kernel/src/ConfigService.cpp
Expand Up @@ -1746,7 +1746,7 @@ will also be available on the library path, or equivalent.
bool ConfigServiceImpl::quickParaViewCheck() const
{
const std::string paraviewIgnoreProperty = "paraview.ignore";
const bool ignoreParaview = hasProperty(paraviewIgnoreProperty) && atoi(getString(paraviewIgnoreProperty).c_str());
const bool ignoreParaview = true;//hasProperty(paraviewIgnoreProperty) && atoi(getString(paraviewIgnoreProperty).c_str());
if(ignoreParaview)
{
this->g_log.debug("Ignoring ParaView");
Expand Down

0 comments on commit 934b102

Please sign in to comment.