From 57613ffb8bb5dce1667dec81f884edac3cc23c1b Mon Sep 17 00:00:00 2001 From: Tom White Date: Tue, 22 Jul 2025 16:58:21 +0100 Subject: [PATCH 1/3] Run lithops tests CI on both ubuntu-22.04 and ubuntu-24.04 --- .github/workflows/lithops-tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/lithops-tests.yml b/.github/workflows/lithops-tests.yml index eb107a16..35d1e3bd 100644 --- a/.github/workflows/lithops-tests.yml +++ b/.github/workflows/lithops-tests.yml @@ -17,7 +17,7 @@ jobs: strategy: fail-fast: false matrix: - os: ["ubuntu-22.04", "macos-latest"] + os: ["ubuntu-22.04", "ubuntu-24.04", "macos-latest"] python-version: ["3.11"] steps: From 16a30a6377548cdfc09131de7d8ac704c03ea81f Mon Sep 17 00:00:00 2001 From: Tom White Date: Wed, 23 Jul 2025 11:13:30 +0100 Subject: [PATCH 2/3] Run lithops tests with localhost v2 --- cubed/tests/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cubed/tests/utils.py b/cubed/tests/utils.py index cce96d04..d67bd6cf 100644 --- a/cubed/tests/utils.py +++ b/cubed/tests/utils.py @@ -16,7 +16,7 @@ "monitoring_interval": 0.1, "include_modules": None, }, - "localhost": {"version": 1}, + "localhost": {"version": 2}, } ALL_EXECUTORS = [create_executor("single-threaded")] From 1ecf1d0cb7bafa37710fd52f20d532e39339bcaa Mon Sep 17 00:00:00 2001 From: Tom White Date: Wed, 23 Jul 2025 11:55:36 +0100 Subject: [PATCH 3/3] Run lithops tests with localhost v1 and https://github.com/lithops-cloud/lithops/pull/1442 --- .github/workflows/lithops-tests.yml | 1 + cubed/tests/utils.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/lithops-tests.yml b/.github/workflows/lithops-tests.yml index 35d1e3bd..b4bcc75d 100644 --- a/.github/workflows/lithops-tests.yml +++ b/.github/workflows/lithops-tests.yml @@ -39,6 +39,7 @@ jobs: run: | python -m pip install --upgrade pip python -m pip install -e '.[test,lithops]' + python -m pip install -U 'lithops @ git+https://github.com/lithops-cloud/lithops.git' - name: Run tests run: | diff --git a/cubed/tests/utils.py b/cubed/tests/utils.py index d67bd6cf..cce96d04 100644 --- a/cubed/tests/utils.py +++ b/cubed/tests/utils.py @@ -16,7 +16,7 @@ "monitoring_interval": 0.1, "include_modules": None, }, - "localhost": {"version": 2}, + "localhost": {"version": 1}, } ALL_EXECUTORS = [create_executor("single-threaded")]