Skip to content

Commit

Permalink
feat(ci): actually print out feature combo failures on failure (#4158)
Browse files Browse the repository at this point in the history
Signed-off-by: Dori Medini <dori@starkware.co>
  • Loading branch information
dorimedini-starkware authored Feb 15, 2025
1 parent 7319f20 commit 011a3ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/run_feature_combos_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def main():
except Exception as e:
feature_failures[package] = str(e)
failures = {"featureless": featureless_failures, "featured": feature_failures}
assert failures == {"featureless": {}, "featured": {}}
assert failures == {"featureless": {}, "featured": {}}, f"{failures=}."


if __name__ == "__main__":
Expand Down

0 comments on commit 011a3ee

Please sign in to comment.