-
Notifications
You must be signed in to change notification settings - Fork 15
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
chore: remove metric from performance #650
Conversation
Signed-off-by: ThibaultFy <[email protected]>
Signed-off-by: ThibaultFy <[email protected]>
Signed-off-by: ThibaultFy <[email protected]>
Signed-off-by: ThibaultFy <[email protected]>
Signed-off-by: ThibaultFy <[email protected]>
Signed-off-by: ThibaultFy <[email protected]>
@@ -376,5 +358,5 @@ def test_n_plus_one_queries_performance_list(authenticated_client, create_comput | |||
with utils.CaptureQueriesContext(connection) as query: | |||
print(authenticated_client.get(url)) | |||
query_task_with_perf = len(query.captured_queries) | |||
assert query_task_with_perf < 12 | |||
assert query_task_with_perf - query_tasks_empty < 4 | |||
assert query_task_with_perf < 11 |
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.
🎉
@@ -68,6 +68,7 @@ ASCENDING: SortOrder.ValueType # 1 | |||
DESCENDING: SortOrder.ValueType # 2 | |||
global___SortOrder = SortOrder | |||
|
|||
@typing_extensions.final |
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.
Out of curiosity, what is this line doing?
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.
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.
It was auto generated, I didn't have your curiosity ahah. Thanks for pointing that out, really interesting indeed !
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.
LGTM
Description
Remove metric from the performance data model
Companion PR