Michael Bishop
Michael Bishop

Reputation: 4430

How can I list all tests using `mix test`

Is there a command-line invocation I can used in conjunction with mix that will output all test names without running the tests?

Upvotes: 7

Views: 1489

Answers (1)

Dylanthepiguy
Dylanthepiguy

Reputation: 1741

This will still run the tests:

mix test --trace

Found in the mix help test page

EDIT: Didn't see the bit saying 'without running the tests', but I thought it might be helpful

Upvotes: 5

Related Questions