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

Update ignored dirs #85

Closed jwilger closed 6 months ago

jwilger commented 6 months ago

Added the .elixir_ls and .git dirs to the list of ignored directories in the Paths module. Otherwise I was getting duplicate runs due to files in the .elixir_ls directory being changed too often during the execution of the tests. I'm not sure why files in that directory are getting changed but they are, and this prevents the double test run.

jwilger commented 6 months ago

Nope, never mind. I only thought that fixed the problem, but it didn't. Something else is going on that may have nothing to do with this library at all. Back to the drawing board.