Skip to content

Commit 159f334

Browse files
committed
Add explicit test pattern configuration to suppress ExUnit warning
Add test_pattern and test_paths to mix.exs to explicitly configure which files are test files. This eliminates the warning about support files (test/support/*.ex) not matching test patterns, while ensuring all test files matching **/*_test.exs are correctly identified and run.
1 parent 0c878ac commit 159f334

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

mix.exs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ defmodule EctoLibSql.MixProject do
1717
package: package(),
1818
description: description(),
1919
docs: docs(),
20+
test_pattern: "**/*_test.exs",
21+
test_paths: ["test"],
2022
dialyzer: [
2123
plt_core_path: "priv/plts",
2224
app_tree: true,

0 commit comments

Comments
 (0)