From f54c1a89eb091eec53854fa2e0238127ef67c6fb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Procha=CC=81zka?= <90197375+P-R-O-C-H-Y@users.noreply.github.com> Date: Fri, 7 Jul 2023 11:44:41 +0200 Subject: [PATCH 1/4] update tests requirements --- .github/workflows/hil.yml | 2 +- tests/requirements.txt | 15 ++++----------- 2 files changed, 5 insertions(+), 12 deletions(-) diff --git a/.github/workflows/hil.yml b/.github/workflows/hil.yml index 8823f9b5376..01675bd7f89 100644 --- a/.github/workflows/hil.yml +++ b/.github/workflows/hil.yml @@ -95,7 +95,7 @@ jobs: - name: Install dependencies run: | pip install -U pip - pip install -r tests/requirements.txt + pip install -r tests/requirements.txt --extra-index-url https://dl.espressif.com/pypi apt update && apt install -y -qq jq - name: Run Tests diff --git a/tests/requirements.txt b/tests/requirements.txt index c4095ef6c49..82316e03a09 100644 --- a/tests/requirements.txt +++ b/tests/requirements.txt @@ -1,13 +1,6 @@ pyserial>=3.0 -esptool>=3.1 -pytest-cov -cryptography<3.4; platform_machine == "armv7l" - -pytest>=6.2.0 -pexpect>=4.4 - -pytest-embedded>=0.5.1 -pytest-embedded-serial>=0.5.1 -pytest-embedded-serial-esp>=0.5.1 -pytest-embedded-arduino>=0.5.1 +esptool>=4.6 +pytest-cov +pytest-embedded-serial-esp>=1.3.3 +pytest-embedded-arduino>=1.3.3 From a88aadbcfbd0bd534981d5bd5ca202135891bcf5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Procha=CC=81zka?= <90197375+P-R-O-C-H-Y@users.noreply.github.com> Date: Fri, 7 Jul 2023 11:49:57 +0200 Subject: [PATCH 2/4] remove already handled components --- tests/requirements.txt | 3 --- 1 file changed, 3 deletions(-) diff --git a/tests/requirements.txt b/tests/requirements.txt index 82316e03a09..e4a957d0e48 100644 --- a/tests/requirements.txt +++ b/tests/requirements.txt @@ -1,6 +1,3 @@ -pyserial>=3.0 -esptool>=4.6 - pytest-cov pytest-embedded-serial-esp>=1.3.3 pytest-embedded-arduino>=1.3.3 From f669d56ea33087c9efcb1e28eb506ed6540fcb5c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Procha=CC=81zka?= <90197375+P-R-O-C-H-Y@users.noreply.github.com> Date: Mon, 10 Jul 2023 12:26:18 +0200 Subject: [PATCH 3/4] Update version of pytest --- tests/requirements.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/requirements.txt b/tests/requirements.txt index e4a957d0e48..aa2f8e94477 100644 --- a/tests/requirements.txt +++ b/tests/requirements.txt @@ -1,3 +1,3 @@ pytest-cov -pytest-embedded-serial-esp>=1.3.3 -pytest-embedded-arduino>=1.3.3 +pytest-embedded-serial-esp>=1.3.4 +pytest-embedded-arduino>=1.3.4 From b44444307665c8209e818f4cdcfecfef526e4298 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Procha=CC=81zka?= <90197375+P-R-O-C-H-Y@users.noreply.github.com> Date: Tue, 11 Jul 2023 09:03:28 +0200 Subject: [PATCH 4/4] Add missing ESP32-H2 to hil.yml --- .github/workflows/hil.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/hil.yml b/.github/workflows/hil.yml index 01675bd7f89..50c9d881bd6 100644 --- a/.github/workflows/hil.yml +++ b/.github/workflows/hil.yml @@ -72,6 +72,7 @@ jobs: - ESP32-S3 - ESP32-C3 - ESP32-C6 + - ESP32-H2 strategy: fail-fast: false