Automating mix test

Is there any way to automate mix test to run like 100 or 200 times?

Could you not just do that with bash?

for i in {1..100}
do
  mix test
done
2 Likes

This helped. Thank you!