I want to separate integration tests from Unit Tests in Elixir. I found that the Elixir mixing documentation contains a section on filters and describes only what I want to do.
Then add the lines below to appdir / test / test_helper.exs
# Exclude all external tests from running ExUnit.configure exclude: [external: true]
Then how is one tag checked as "external"?
source share