set database_cleanup as rebel module

pull/2763/head
Alexandre Fayolle 2023-02-22 13:43:00 +01:00 committed by fkantelberg
parent 42894f7517
commit e2333477ae
2 changed files with 15 additions and 1 deletions

View File

@ -16,7 +16,8 @@ odoo_test_flavor: Both
odoo_version: 17.0 odoo_version: 17.0
org_name: Odoo Community Association (OCA) org_name: Odoo Community Association (OCA)
org_slug: OCA org_slug: OCA
rebel_module_groups: [] rebel_module_groups:
- database_cleanup
repo_description: 'TODO: add repo description.' repo_description: 'TODO: add repo description.'
repo_name: Server Tools repo_name: Server Tools
repo_slug: server-tools repo_slug: server-tools

View File

@ -36,8 +36,18 @@ jobs:
matrix: matrix:
include: include:
- container: ghcr.io/oca/oca-ci/py3.10-odoo17.0:latest - container: ghcr.io/oca/oca-ci/py3.10-odoo17.0:latest
include: "database_cleanup"
makepot: "true"
name: Rebel test with Odoo
- container: ghcr.io/oca/oca-ci/py3.10-ocb17.0:latest
include: "database_cleanup"
name: Rebel test with OCB
- container: ghcr.io/oca/oca-ci/py3.10-odoo17.0:latest
exclude: "database_cleanup"
makepot: "true"
name: test with Odoo name: test with Odoo
- container: ghcr.io/oca/oca-ci/py3.10-ocb17.0:latest - container: ghcr.io/oca/oca-ci/py3.10-ocb17.0:latest
exclude: "database_cleanup"
name: test with OCB name: test with OCB
makepot: "true" makepot: "true"
services: services:
@ -49,6 +59,9 @@ jobs:
POSTGRES_DB: odoo POSTGRES_DB: odoo
ports: ports:
- 5432:5432 - 5432:5432
env:
INCLUDE: "${{ matrix.include }}"
EXCLUDE: "${{ matrix.exclude }}"
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
with: with: