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
139
Merge Requests
139
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Jobs
Commits
Open sidebar
nexedi
erp5
Commits
4e166d11
Commit
4e166d11
authored
2 years ago
by
Kazuhiko Shiozaki
Committed by
Jérome Perrin
1 year ago
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
py3: override ERP5TypeTestLoader.__init__ to avoid RecursionError in Python 3.
parent
1cea0752
Changes
1
Show 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 @
4e166d11
...
...
@@ -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
,
...
...
This diff is collapsed.
Click to expand it.
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