Skip to content
Snippets Groups Projects
Unverified Commit 77a4fc0f authored by jjenthought's avatar jjenthought Committed by GitHub
Browse files

Merge pull request #165 from force-h2020/silence-log

Merged #165 
parents d305d31f 01b19bd8
No related branches found
No related tags found
No related merge requests found
......@@ -17,9 +17,10 @@ except ImportError:
class TestBDSSApplication(unittest.TestCase):
def test_initialization(self):
with warnings.catch_warnings():
warnings.simplefilter("ignore")
app = BDSSApplication(False, "foo/bar")
with testfixtures.LogCapture():
with warnings.catch_warnings():
warnings.simplefilter("ignore")
app = BDSSApplication(False, "foo/bar")
self.assertFalse(app.evaluate)
self.assertEqual(app.workflow_filepath, "foo/bar")
......
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