We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2326019 + 4f64ebd commit 3de7c50Copy full SHA for 3de7c50
.github/workflows/eval.yml
@@ -219,7 +219,7 @@ jobs:
219
# Use the target branch to get accurate maintainer info
220
nix-build target/ci -A eval.compare \
221
--arg beforeResultDir ./targetResult \
222
- --arg afterResultDir ./prResult \
+ --arg afterResultDir $(realpath prResult) \
223
--arg touchedFilesJson ./touched-files.json \
224
-o comparison
225
ci/eval/compare/cmp-stats.py
@@ -60,6 +60,7 @@ def load_all_metrics(directory: Path) -> dict:
60
return metrics
61
62
def dataframe_to_markdown(df: pd.DataFrame) -> str:
63
+ df = df.sort_values(by=df.columns[0], ascending=True)
64
markdown_lines = []
65
66
# Header (get column names and format them)
0 commit comments