Skip to content
Snippets Groups Projects
Commit d304805f authored by Stefano Borini's avatar Stefano Borini
Browse files

Coverage

parent 67bb6869
No related branches found
No related tags found
1 merge request!167Make workflow accessible via application
...@@ -58,3 +58,10 @@ class TestBDSSApplication(unittest.TestCase): ...@@ -58,3 +58,10 @@ class TestBDSSApplication(unittest.TestCase):
app = BDSSApplication(False, fixtures.get("test_empty.json")) app = BDSSApplication(False, fixtures.get("test_empty.json"))
self.assertIsInstance(app.workflow, Workflow) self.assertIsInstance(app.workflow, Workflow)
with testfixtures.LogCapture():
with warnings.catch_warnings():
warnings.simplefilter("ignore")
app = BDSSApplication(True, fixtures.get("test_empty.json"))
self.assertIsInstance(app.workflow, Workflow)
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