For example,

defmodule Test do
  @moduletag :outer
  
  test "test1" do
  end
  
  @tag :inner
  test "test2" do
  end
end


I want to include test1 and skip test2.  But running 'mix test --include 
outer --exclude inner' includes both tests.

I think, it's possible to consider precedence of --include/--exclude 
options or simply just run intercrossing tests.


-- 
You received this message because you are subscribed to the Google Groups 
"elixir-lang-core" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/elixir-lang-core/a07cadd8-41fc-4032-a7ac-9da2042e6181%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to