-
Notifications
You must be signed in to change notification settings - Fork 143
test: improving tests performance #4425
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
2dc1180
1a3e0f7
0ea76c5
a6c0aa0
365dd14
e1a1992
103b012
b5405d6
57aff99
b5b3da7
a83e6ce
9670608
633a9e1
3b4fe06
3424246
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| Improving tests performance |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -71,7 +71,7 @@ def __init__(self): | |
| self._configured = False | ||
|
|
||
| def __call__(self, name): | ||
| if True: # not self._configured: # Temporal patch pending on #3568 | ||
| if not self._configured: # Temporal patch pending on #3568 | ||
| self._set_configuration() | ||
| self._configured = True | ||
|
Comment on lines
+74
to
76
|
||
|
|
||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The inline note says this is a “Temporal patch pending on #3568”, but this PR is marked to close #3568. If the issue is now resolved, this comment should be updated/removed; if it’s not resolved, the PR description/linking should be adjusted because this change reverts the prior mitigation.