Skip to content
This repository was archived by the owner on Jun 13, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion graphql_api/types/flake_aggregates/flake_aggregates.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
merged_results = merged_results.with_columns(
pl.all().pct_change().name.suffix("_percent_change")
)
aggregates = merged_results.row(0, named=True)
aggregates = merged_results.row(1, named=True)

Check warning on line 47 in graphql_api/types/flake_aggregates/flake_aggregates.py

View check run for this annotation

Codecov Notifications / codecov/patch

graphql_api/types/flake_aggregates/flake_aggregates.py#L47

Added line #L47 was not covered by tests

return FlakeAggregates(**aggregates)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@
merged_results = merged_results.with_columns(
pl.all().pct_change().name.suffix("_percent_change")
)
aggregates = merged_results.row(0, named=True)
aggregates = merged_results.row(1, named=True)

Check warning on line 76 in graphql_api/types/test_results_aggregates/test_results_aggregates.py

View check run for this annotation

Codecov Notifications / codecov/patch

graphql_api/types/test_results_aggregates/test_results_aggregates.py#L76

Added line #L76 was not covered by tests

return TestResultsAggregates(**aggregates)

Expand Down
Loading