dnlserrano / exavier

Elixir mutation testing library

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Skip test files

woylie opened this issue · comments

Is there a way to skip certain test files altogether? Not all of my test files map one-to-one to a module. For example, I have some test files that only test protocol implementations in my project, so there is no Elixir module to be found. I tried setting the values in the :test_files_to_modules option to nil or false, but that doesn't seem to be supported.

As a workout around, I set the module to the root module of my application for those tests.