Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
erp5
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
7
Merge Requests
7
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Jobs
Commits
Open sidebar
Jérome Perrin
erp5
Commits
b119463a
Commit
b119463a
authored
Sep 30, 2022
by
Kazuhiko Shiozaki
Committed by
Jérome Perrin
Mar 15, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
py3: override ERP5TypeTestLoader.__init__ to avoid RecursionError in Python 3.
parent
08820b6c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
0 deletions
+10
-0
product/ERP5Type/tests/runUnitTest.py
product/ERP5Type/tests/runUnitTest.py
+10
-0
No files found.
product/ERP5Type/tests/runUnitTest.py
View file @
b119463a
...
...
@@ -11,6 +11,7 @@ import shutil
import
errno
import
random
import
transaction
import
six
from
glob
import
glob
...
...
@@ -286,6 +287,15 @@ class ERP5TypeTestLoader(unittest.TestLoader):
lambda
self
:
self
.
_testMethodPrefix
,
lambda
self
,
value
:
None
)
if
six
.
PY3
:
def
__init__
(
self
):
# override without call super() to avoid RecursionError in Python 3.
# super().__init__()
self
.
errors
=
[]
# Tracks packages which we have called into via load_tests, to
# avoid infinite re-entrancy.
self
.
_loading_packages
=
set
()
def
_importZodbTestComponent
(
self
,
name
):
import
erp5.component.test
module
=
__import__
(
'erp5.component.test.'
+
name
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment