Skip to content

Commit 87756b3

Browse files
Add back compare-benchmark-jsons validation (#3089)
1 parent 187e48c commit 87756b3

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

scripts/compare-benchmark-jsons.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,7 @@
3434
# match.
3535
df3 = pd.merge(base, pr, on=["name", "storage"], how="right", suffixes=("_base", "_pr"))
3636

37-
# This check will fail if new names are included, so remove this.
38-
# assert df3["unit_base"].equals(df3["unit_pr"]), (df3["unit_base"], df3["unit_pr"])
37+
assert df3["unit_base"].equals(df3["unit_pr"]), (df3["unit_base"], df3["unit_pr"])
3938

4039
print(
4140
pd.DataFrame(

0 commit comments

Comments
 (0)