ci: fix get binaries from pipeline via the build report

should extract to IDF_PATH, not the current workdir
pull/13090/head
Fu Hanxi 2024-01-12 08:43:20 +01:00
rodzic 72a1f68e76
commit edf735a458
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 19399699CF3C4B16
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

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