Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
logilab-common
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
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
open-source
logilab-common
Commits
929757cdeec8
Commit
929757cdeec8
authored
2 months ago
by
Frank Bessou
Browse files
Options
Downloads
Patches
Plain Diff
fix: replace usage of unittest._TextTestResult by unittest.TextTestResult
parent
f744a7e259d1
No related branches found
No related tags found
1 merge request
!95
Support py3.12
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
logilab/common/testlib.py
+2
-2
2 additions, 2 deletions
logilab/common/testlib.py
with
2 additions
and
2 deletions
logilab/common/testlib.py
+
2
−
2
View file @
929757cd
...
@@ -706,7 +706,7 @@
...
@@ -706,7 +706,7 @@
)
)
class
SkipAwareTestResult
(
unittest
.
_
TextTestResult
):
class
SkipAwareTestResult
(
unittest
.
TextTestResult
):
def
__init__
(
def
__init__
(
self
,
self
,
stream
,
stream
,
...
@@ -1024,7 +1024,7 @@
...
@@ -1024,7 +1024,7 @@
# monkeypatch unittest and doctest (ouch !)
# monkeypatch unittest and doctest (ouch !)
unittest
.
_
TextTestResult
=
SkipAwareTestResult
unittest
.
TextTestResult
=
SkipAwareTestResult
unittest
.
TextTestRunner
=
SkipAwareTextTestRunner
unittest
.
TextTestRunner
=
SkipAwareTextTestRunner
unittest
.
TestLoader
=
NonStrictTestLoader
unittest
.
TestLoader
=
NonStrictTestLoader
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment