Skip to content

Commit

Permalink
Support re-running failed tests with runEngineDistribution (#10483)
Browse files Browse the repository at this point in the history
  • Loading branch information
JaroslavTulach authored Jul 10, 2024
1 parent 8da0630 commit ee0175c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion distribution/lib/Standard/Test/0.0.0-dev/src/Suite.enso
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ type Suite
succ_tests = all_results.filter (r-> r.is_success) . length
failed_tests = all_results.filter (r-> r.is_fail)
failed_tests_number = failed_tests.length
failed_tests_names = failed_tests.map (t-> t.spec_name) . distinct . take 10 . join "|"
failed_tests_names = failed_tests.map (t-> t.spec_name.replace ' ' '.') . distinct . take 10 . join "|"
skipped_tests = all_results.filter (r-> r.is_pending) . length
pending_groups = matching_specs.filter (p-> p.first.is_pending) . length
case should_exit of
Expand Down

0 comments on commit ee0175c

Please sign in to comment.