From 8d5122d0cb918486c2b264a8785d11565c63d087 Mon Sep 17 00:00:00 2001 From: josep-tecnativa Date: Mon, 7 Oct 2024 12:16:37 +0200 Subject: [PATCH] [TMP] Temporal test commit --- .github/workflows/ci.yaml | 17 ----------------- tests/__init__.py | 6 +++--- 2 files changed, 3 insertions(+), 20 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 20a1a662..fec5066a 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -38,23 +38,6 @@ jobs: odoo_version: ["18.0"] pg_version: ["15"] python_version: ["3.10"] - include: - # Older odoo versions don't support latest postgres and Python versions - - odoo_version: "17.0" - pg_version: "15" - python_version: "3.10" - - odoo_version: "16.0" - pg_version: "14" - python_version: "3.10" - - odoo_version: "15.0" - pg_version: "14" - python_version: "3.9" - - odoo_version: "14.0" - pg_version: "14" - python_version: "3.9" - - odoo_version: "13.0" - pg_version: "14" - python_version: "3.9" env: # Other variables to configure tests and execution environment DOCKER_BUILDKIT: 1 diff --git a/tests/__init__.py b/tests/__init__.py index 78d130c0..117e80f7 100644 --- a/tests/__init__.py +++ b/tests/__init__.py @@ -323,7 +323,7 @@ def test_addons_env(self): # The test is hacking ODOO_VERSION to pin a commit # It uses OCA/OpenUpgrade as base for Odoo, which won't work from v14 # and onwards as it no longer is a fork from Odoo - for sub_env in matrix(odoo={"11.0", "12.0", "13.0", "18.0"}): + for sub_env in matrix(odoo={"11.0", "12.0", "13.0"}): self.compose_test( join(SCAFFOLDINGS_DIR, "addons_env"), sub_env, @@ -335,7 +335,7 @@ def test_addons_env(self): ("test", "-e", "auto/addons/crm"), ("test", "-d", "auto/addons/crm/migrations"), ) - for sub_env in matrix(odoo_skip={"11.0", "12.0", "13.0", "17.0"}): + for sub_env in matrix(odoo_skip={"11.0", "12.0", "13.0", "18.0"}): self.compose_test( join(SCAFFOLDINGS_DIR, "addons_env_ou"), sub_env, @@ -473,7 +473,7 @@ def test_dependencies_lt_16(self): def test_dependencies_ge_16(self): """Test dependencies installation for versions >= 16""" self._check_dependencies( - "dependencies_ge_16", {"11.0", "12.0", "13.0", "14.0", "15.0"} + "dependencies_ge_16", {"11.0", "12.0", "13.0", "14.0", "15.0", "18.0"} ) # TODO: Remove decorator when base_search_fuzzy is migrated to 18.0