-
-
Notifications
You must be signed in to change notification settings - Fork 62
Open
Labels
Description
I want to run my tests in parallel, but I just can't figure out which options I should use.
I tried:
ember exam --load-balance --parallel=1- doesn't run tests in parallelember exam --load-balance --parallel=2- doesn't run tests in parallel, runs the whole test suite twice (1624 tests out of 812)ember exam --load-balance --parallel=1 --split=2- doesn't run tests in parallel, runs only part of the test suite (366 tests out of 812)ember exam --load-balance --parallel=2 --split=2- doesn't run tests in parallel, runs only part of the test suite (732 tests out of 812)
nwhittaker, brkn, netes, pomm0 and LucMorrissette