diff options
Diffstat (limited to 'meta/lib/oeqa/utils/postactions.py')
-rw-r--r-- | meta/lib/oeqa/utils/postactions.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oeqa/utils/postactions.py b/meta/lib/oeqa/utils/postactions.py index 2de2d18328..3b537146c5 100644 --- a/meta/lib/oeqa/utils/postactions.py +++ b/meta/lib/oeqa/utils/postactions.py | |||
@@ -70,7 +70,7 @@ def list_and_fetch_failed_tests_artifacts(d, tc, artifacts_list, outputdir): | |||
70 | raise Exception("Error while fetching compressed artifacts") | 70 | raise Exception("Error while fetching compressed artifacts") |
71 | p = subprocess.run(["tar", "zxf", "-", "-C", outputdir], input=output) | 71 | p = subprocess.run(["tar", "zxf", "-", "-C", outputdir], input=output) |
72 | except Exception as e: | 72 | except Exception as e: |
73 | bb.warn(f"Can not retrieve {artifact_path} from test target: {e}") | 73 | bb.warn(f"Can not retrieve artifacts from test target: {e}") |
74 | 74 | ||
75 | 75 | ||
76 | ################################################################## | 76 | ################################################################## |