From b4deb033fd5bcc5901189f1ceea8534d400896ec Mon Sep 17 00:00:00 2001 From: Chetouane <elias.chetouane@univ-grenoble-alpes.fr> Date: Fri, 1 Dec 2023 16:12:06 +0100 Subject: [PATCH] =?UTF-8?q?Modification=20pour=20ex=C3=A9cution=20de=20tou?= =?UTF-8?q?s=20les=20scripts=20=C3=A0=20la=20suite=20->=20tester=20+=20v?= =?UTF-8?q?=C3=A9rifier=20si=20les=20print=20posent=20probl=C3=A8me?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- run-all-codes.py | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/run-all-codes.py b/run-all-codes.py index 39f0307..43211c1 100644 --- a/run-all-codes.py +++ b/run-all-codes.py @@ -21,6 +21,12 @@ def execute_python_file(file_path): # file_path = "0-collect-data/nakala.py" -file_path = "0-collect-data/zenodo.py" - -execute_python_file (file_path) \ No newline at end of file +file_paths = [ + "0-collect-data/zenodo.py", + "0-collect-data/nakala.py", + "0-collect-data/datacite.py", + "0-collect-data/rdg.py" +] + +for file_path in file_paths: + execute_python_file (file_path) -- GitLab