diff options
Diffstat (limited to 'pgaas/tests/test_plugin.py')
-rw-r--r-- | pgaas/tests/test_plugin.py | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/pgaas/tests/test_plugin.py b/pgaas/tests/test_plugin.py index 0071499..10a9e10 100644 --- a/pgaas/tests/test_plugin.py +++ b/pgaas/tests/test_plugin.py @@ -178,6 +178,7 @@ def test_add_pgaas_cluster(monkeypatch): except Exception as e: print("Error: {0}".format(e)) print("Stack: {0}".format(traceback.format_exc())) + raise finally: current_ctx.clear() @@ -192,6 +193,7 @@ def test_add_database(monkeypatch): except Exception as e: print("Error: {0}".format(e)) print("Stack: {0}".format(traceback.format_exc())) + raise finally: current_ctx.clear() @@ -207,6 +209,7 @@ def test_bad_add_database(monkeypatch): except Exception as e: print("Error: {0}".format(e)) print("Stack: {0}".format(traceback.format_exc())) + raise finally: current_ctx.clear() @@ -249,10 +252,11 @@ def test_update_database(monkeypatch): # pylint: disable=protected-access mynode.properties = mynode._properties myctx.nodes = [mynode] - pgaas.pgaas_plugin.update_database(ctx=myctx, args={}) + pgaas.pgaas_plugin.update_database(refctx=myctx) except Exception as e: print("Error: {0}".format(e)) print("Stack: {0}".format(traceback.format_exc())) + raise finally: current_ctx.clear() @@ -267,6 +271,7 @@ def test_delete_database(monkeypatch): except Exception as e: print("Error: {0}".format(e)) print("Stack: {0}".format(traceback.format_exc())) + raise finally: current_ctx.clear() @@ -281,5 +286,6 @@ def test_rm_pgaas_cluster(monkeypatch): except Exception as e: print("Error: {0}".format(e)) print("Stack: {0}".format(traceback.format_exc())) + raise finally: current_ctx.clear() |