From 08013f06c0fccc08fbea7ae4e4545687c5c85c38 Mon Sep 17 00:00:00 2001 From: Elijah Date: Thu, 29 Feb 2024 17:21:30 +0100 Subject: [PATCH] Added clause to execute test_all_use_cases() when running main for the testing pipeline --- main.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/main.py b/main.py index 5fc0ada..1685f8a 100644 --- a/main.py +++ b/main.py @@ -138,3 +138,7 @@ def issue_and_sign_vp_test(revoked_credential=False): ) return idhub_ssikit.verify_presentation(signed_presentation) + + +if __name__ == '__main__': + test_all_use_cases()