Skip to content

Commit

Permalink
Refs #11625. Disable unit test when algorithm not registered
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Wedel committed Apr 23, 2015
1 parent bfc85b4 commit a2d54d3
Showing 1 changed file with 3 additions and 1 deletion.
Expand Up @@ -170,4 +170,6 @@ def _cleanWorkspaces(self, wsList):


if __name__ == '__main__':
unittest.main()
# Only test if algorithm is registered (pyparsing dependency).
if AlgorithmFactory.exists("PoldiCreatePeaksFromFile"):
unittest.main()

0 comments on commit a2d54d3

Please sign in to comment.