summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/utils/postactions.py
diff options
context:
space:
mode:
Diffstat (limited to 'meta/lib/oeqa/utils/postactions.py')
-rw-r--r--meta/lib/oeqa/utils/postactions.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oeqa/utils/postactions.py b/meta/lib/oeqa/utils/postactions.py
index 2a08129d6c..a0e3b70892 100644
--- a/meta/lib/oeqa/utils/postactions.py
+++ b/meta/lib/oeqa/utils/postactions.py
@@ -71,7 +71,7 @@ def retrieve_test_artifacts(target, artifacts_list, target_dir):
71 raise Exception("Error while fetching compressed artifacts") 71 raise Exception("Error while fetching compressed artifacts")
72 p = subprocess.run(["tar", "zxf", "-", "-C", local_artifacts_dir], input=output) 72 p = subprocess.run(["tar", "zxf", "-", "-C", local_artifacts_dir], input=output)
73 except Exception as e: 73 except Exception as e:
74 bb.warn(f"Can not retrieve {artifact_path} from test target: {e}") 74 bb.warn(f"Can not retrieve artifacts from test target: {e}")
75 75
76def list_and_fetch_failed_tests_artifacts(d, tc): 76def list_and_fetch_failed_tests_artifacts(d, tc):
77 artifacts_list = get_artifacts_list(tc.target, d.getVar("TESTIMAGE_FAILED_QA_ARTIFACTS")) 77 artifacts_list = get_artifacts_list(tc.target, d.getVar("TESTIMAGE_FAILED_QA_ARTIFACTS"))