Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
Converter
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
XCG
Odoo modules
Converter
Merge requests
!65
fix running all tests
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
fix running all tests
topic/18.0/fix-tests
into
branch/18.0
Overview
0
Commits
2
Pipelines
0
Changes
8
Merged
Vincent Hatakeyama
requested to merge
topic/18.0/fix-tests
into
branch/18.0
2 weeks ago
Overview
0
Commits
2
Pipelines
0
Changes
8
Expand
0
0
Merge request reports
Compare
branch/18.0
version 1
6210841b
2 weeks ago
branch/18.0 (base)
and
latest version
latest version
f9010440
2 commits,
2 weeks ago
version 1
6210841b
1 commit,
2 weeks ago
8 files
+
46
−
44
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
8
Search (e.g. *.vue) (Ctrl+P)
tests/schemas/__init__.py
+
2
−
2
Options
import
json
import
pkgutil
from
typing
import
Any
from
collections.abc
import
Gen
erator
from
collections.abc
import
It
erator
@@ -5,6 +5,6 @@
def
get_schemas
()
->
Gen
erator
[
Any
]:
def
get_schemas
()
->
It
erator
[
Any
]:
for
file_prefix
in
(
"
product
"
,):
data
:
bytes
|
None
=
pkgutil
.
get_data
(
__name__
,
f
"
{
file_prefix
}
.schema.json
"
)
if
data
:
Loading