From edf735a458efa6ac98ac11285290d53a7e2c9202 Mon Sep 17 00:00:00 2001 From: Fu Hanxi Date: Fri, 12 Jan 2024 08:43:20 +0100 Subject: [PATCH] ci: fix get binaries from pipeline via the build report should extract to IDF_PATH, not the current workdir --- conftest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conftest.py b/conftest.py index e9048d461f..f212ff4cc3 100644 --- a/conftest.py +++ b/conftest.py @@ -124,7 +124,7 @@ class BuildReportDownloader: f.seek(0) with zipfile.ZipFile(f) as zip_ref: - zip_ref.extractall() + zip_ref.extractall(IDF_PATH) @pytest.fixture(scope='session')