mirror of
https://github.com/enso-org/enso.git
synced 2024-11-10 12:48:25 +03:00
Support re-running failed tests with runEngineDistribution (#10483)
This commit is contained in:
parent
8da06309e9
commit
ee0175c364
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user