Skip to content

Commit 8057edf

Browse files
authored
Merge pull request #661 from dixmit/19
Add 19.0 on OCB Sync
2 parents f9b919b + 4ea7bee commit 8057edf

2 files changed

Lines changed: 5 additions & 2 deletions

File tree

tests/test_gen_addon_readme.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,10 @@ def test_rst_error(tmp_path):
162162
cmd + opts, stderr=subprocess.STDOUT, universal_newlines=True
163163
)
164164
except subprocess.CalledProcessError as e:
165-
assert "Title level inconsistent" in e.output
165+
assert (
166+
"Inconsistent title style" in e.output
167+
or "Title level inconsistent" in e.output
168+
)
166169
else:
167170
assert False, "A rst syntax error should have been detected."
168171

tools/ocb-sync.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
ODOO="git@github.com:/odoo/odoo.git"
1010
OCB="git@github.com:/OCA/OCB.git"
11-
BRANCHES="18.0 17.0 16.0 15.0"
11+
BRANCHES="19.0 18.0 17.0 16.0 15.0"
1212
GITDIR="/var/tmp/git"
1313
PUBDIR="/var/tmp/ocb-nightly"
1414
BUILDDIR="/var/tmp/ocb-build"

0 commit comments

Comments
 (0)