From 1b3bbba7254b88c1d7a0b77dc898004a0eb33af7 Mon Sep 17 00:00:00 2001 From: Tue Herlau <tuhe@dtu.dk> Date: Sun, 11 Sep 2022 18:44:55 +0200 Subject: [PATCH] updates --- src/unitgrade/dashboard/app.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/unitgrade/dashboard/app.py b/src/unitgrade/dashboard/app.py index c15380e..0349c58 100644 --- a/src/unitgrade/dashboard/app.py +++ b/src/unitgrade/dashboard/app.py @@ -257,6 +257,7 @@ def mkapp(base_dir="./"): m = '.'.join(db['modules']) # cmd = f"python -m {m}" cmd = f"python -m unittest {m}" + print(cmd) try: out = subprocess.run(cmd, cwd=db['local_base_dir_for_test_module'], shell=True, check=True, capture_output=True, text=True) except Exception as e: -- GitLab