Skip to content

Commit

Permalink
[TMP] Temporal test commit
Browse files Browse the repository at this point in the history
  • Loading branch information
josep-tecnativa committed Oct 7, 2024
1 parent d5b73e4 commit 8d5122d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 20 deletions.
17 changes: 0 additions & 17 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions tests/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -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,
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 8d5122d

Please sign in to comment.