Skip to content

Commit 8da2b37

Browse files
[IMP] CI: add rebel module
1 parent fd477f7 commit 8da2b37

File tree

4 files changed

+17
-2
lines changed

4 files changed

+17
-2
lines changed

.copier-answers.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Do NOT update manually; changes here will be overwritten by Copier
2-
_commit: v1.29
2+
_commit: v1.30
33
_src_path: git+https://github.com/OCA/oca-addons-repo-template
44
additional_ruff_rules: []
55
ci: GitHub
@@ -17,7 +17,8 @@ odoo_test_flavor: Both
1717
odoo_version: 18.0
1818
org_name: Odoo Community Association (OCA)
1919
org_slug: OCA
20-
rebel_module_groups: []
20+
rebel_module_groups:
21+
- account_move_name_sequence
2122
repo_description: account-financial-tools
2223
repo_name: account-financial-tools
2324
repo_slug: account-financial-tools

.github/workflows/test.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,17 @@ jobs:
3636
matrix:
3737
include:
3838
- container: ghcr.io/oca/oca-ci/py3.10-odoo18.0:latest
39+
include: "account_move_name_sequence"
3940
name: test with Odoo
4041
- container: ghcr.io/oca/oca-ci/py3.10-ocb18.0:latest
42+
include: "account_move_name_sequence"
43+
name: test with OCB
44+
makepot: "true"
45+
- container: ghcr.io/oca/oca-ci/py3.10-odoo18.0:latest
46+
exclude: "account_move_name_sequence"
47+
name: test with Odoo
48+
- container: ghcr.io/oca/oca-ci/py3.10-ocb18.0:latest
49+
exclude: "account_move_name_sequence"
4150
name: test with OCB
4251
makepot: "true"
4352
services:
@@ -50,6 +59,8 @@ jobs:
5059
ports:
5160
- 5432:5432
5261
env:
62+
INCLUDE: "${{ matrix.include }}"
63+
EXCLUDE: "${{ matrix.exclude }}"
5364
OCA_ENABLE_CHECKLOG_ODOO: "1"
5465
steps:
5566
- uses: actions/checkout@v4

.pre-commit-config.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,7 @@ repos:
9595
additional_dependencies:
9696
9797
98+
9899
- repo: https://github.com/pre-commit/pre-commit-hooks
99100
rev: v4.6.0
100101
hooks:

eslint.config.cjs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
var globals = require('globals');
12
jsdoc = require("eslint-plugin-jsdoc");
23

34
const config = [{
@@ -16,6 +17,7 @@ const config = [{
1617
openerp: "readonly",
1718
owl: "readonly",
1819
luxon: "readonly",
20+
...globals.browser,
1921
},
2022

2123
ecmaVersion: 2024,

0 commit comments

Comments
 (0)