Skip to content

Commit ea3a7e3

Browse files
committed
Fix warning about fixture files
warning: the following files do not match any of the configured `:test_load_filters` / `:test_ignore_filters`: test/fixtures/example-umbrella-app-with-conflict/apps/app_a/lib/module_a.ex test/fixtures/example-umbrella-app-with-conflict/apps/app_b/lib/module_a.ex test/fixtures/example-umbrella-app/apps/app_a/lib/module_a.ex test/fixtures/example-umbrella-app/apps/app_b/lib/module_b.ex This might indicate a typo in a test file name (for example, using "foo_tests.exs" instead of "foo_test.exs"). See the configuration for `:test_pattern` under `mix help test` for more information.
1 parent 14735ab commit ea3a7e3

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

mix.exs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ defmodule Sentry.Mixfile do
1414
deps: deps(),
1515
elixirc_paths: elixirc_paths(Mix.env()),
1616
test_paths: test_paths(System.get_env("SENTRY_INTEGRATION")),
17+
test_ignore_filters: [~r|/fixtures/|],
1718
dialyzer: [
1819
flags: [:unmatched_returns, :error_handling, :extra_return],
1920
plt_file: {:no_warn, "plts/dialyzer.plt"},

0 commit comments

Comments
 (0)