Closed SailorMax closed 4 years ago
AFAIK fastest does not preserve order (that's not LIFO but shuffled).
Have you tried to run it with --preserve-order
?
Yes, I use --preserve-order
:
bin/phpunit-tests | vendor/bin/fastest --preserve-order -v "phpunit {}"
phpunit-tests
output list of tests in required order, but fastest run it from the end...
Sorry for being so much late on this, I have litterally no time for open source lately. BTW I think I've fixed it in https://github.com/liuggio/fastest/pull/136, could you @SailorMax require this particular commit and check if everything is OK? Thanks in advance.
Now it work as expected. Thank you!
Looks like current version use input list in inverse mode (LIFO). Can you use it as expected - FIFO (first input - first output)?
thank you.