From c950d6d366f1d73b55b51aa79a0470864f762eda Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Sat, 8 Feb 2025 21:51:50 +0200 Subject: [PATCH] CI: Disable cleaning of ubuntu instance --- .github/workflows/examples.yml | 2 +- tests/commands/pkg/test_outdated.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/examples.yml b/.github/workflows/examples.yml index 2e734563..76f89b72 100644 --- a/.github/workflows/examples.yml +++ b/.github/workflows/examples.yml @@ -34,7 +34,7 @@ jobs: run: | # Free space sudo apt clean - docker rmi $(docker image ls -aq) + # docker rmi $(docker image ls -aq) df -h tox -e testexamples diff --git a/tests/commands/pkg/test_outdated.py b/tests/commands/pkg/test_outdated.py index 58f3b0f7..54a239a3 100644 --- a/tests/commands/pkg/test_outdated.py +++ b/tests/commands/pkg/test_outdated.py @@ -56,7 +56,7 @@ def test_project(clirunner, validate_cliresult, isolated_pio_core, tmp_path): re.MULTILINE, ) assert re.search( - r"^DallasTemperature\s+3\.\d\.1\s+3\.\d+\.\d+\s+3\.\d+\.\d+\s+Library\s+devkit", + r"^DallasTemperature\s+3\.\d\.1\s+3\.\d+\.\d+\s+4\.\d+\.\d+\s+Library\s+devkit", result.output, re.MULTILINE, )