From 5dbbb93a06b95670e2983f804495d76eb5dfafcb Mon Sep 17 00:00:00 2001 From: John Date: Tue, 10 Aug 2021 15:49:19 +0100 Subject: [PATCH] Fix path for subprocess Signed-off-by: John --- scripts/build/TestImpactAnalysis/tiaf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/build/TestImpactAnalysis/tiaf.py b/scripts/build/TestImpactAnalysis/tiaf.py index c4d1449dbf..3c94c2b5f4 100644 --- a/scripts/build/TestImpactAnalysis/tiaf.py +++ b/scripts/build/TestImpactAnalysis/tiaf.py @@ -290,7 +290,7 @@ class TestImpact: # Run sequence unpacked_args = " ".join(args) logger.info(f"Args: {unpacked_args}") - runtime_result = subprocess.run([self._tiaf_bin] + args) + runtime_result = subprocess.run([str(self._tiaf_bin)] + args) report = None # If the sequence completed (with or without failures) we will update the historical meta-data