ci: fix get binaries from pipeline via the build report

should extract to IDF_PATH, not the current workdir
This commit is contained in:
Fu Hanxi 2024-01-12 08:43:20 +01:00
parent 72a1f68e76
commit edf735a458
No known key found for this signature in database
GPG Key ID: 19399699CF3C4B16

View File

@ -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')