randycoulman / mix_test_interactive

Interactive watch mode for Elixir's mix test. https://hexdocs.pm/mix_test_interactive/
MIT License
73 stars 12 forks source link

Running other tasks like Credo #52

Closed Ch4s3 closed 2 years ago

Ch4s3 commented 2 years ago

Is there any way to run things like Credo or Dialyxir from mix_test_interactive?

randycoulman commented 2 years ago

Not currently. mix_test_interactive is geared to manage the arguments being sent to mix test, so having it manage other tools doesn't make much sense.

mix_test_watch still supports that ability, though.

If you've got ideas on how to cleanly support other tools in a way that makes sense, we're totally open to the idea.

Ch4s3 commented 2 years ago

You'd probably need a plugin system that can distinguish non-ex_unit stuff. I'll think on.