Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
galipremsagar committed Sep 12, 2024
1 parent 337cef8 commit 5efca92
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion ci/cudf_pandas_scripts/pandas-tests/job-summary.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ def emoji_failed(x):
main_df = pd.DataFrame.from_dict(main_results, orient="index").sort_index()
diff_df = pr_df - main_df

pr_df = pr_df[["total", "passed", "failed", "skipped"]]
pr_df = pr_df[["total", "passed", "failed", "skipped", "_slow_function_call", "_fast_function_call"]]
diff_df = diff_df[["total", "passed", "failed", "skipped"]]
diff_df.columns = diff_df.columns + "_diff"
diff_df["passed_diff"] = diff_df["passed_diff"].map(emoji_passed)
Expand All @@ -89,6 +89,8 @@ def emoji_failed(x):
"passed_diff": "Passed delta",
"failed_diff": "Failed delta",
"skipped_diff": "Skipped delta",
"_slow_function_call" : "Slow function calls",
"_fast_function_call" : "Fast function calls",
}
)
df = df.sort_values(by=["Failed tests", "Skipped tests"], ascending=False)
Expand Down

0 comments on commit 5efca92

Please sign in to comment.