Skip to content

Commit

Permalink
Make "mix test" completely quiet
Browse files Browse the repository at this point in the history
  • Loading branch information
whatyouhide committed Feb 18, 2025
1 parent cf655e5 commit a13ba90
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,12 @@ defmodule PolymorphicEmbed.MixProject do
[
test: [
"ecto.create --quiet",
"ecto.rollback --all",
"ecto.migrate",
"ecto.rollback --all --quiet",
fn _args ->
:code.delete(PolymorphicEmbed.CreateTables)
:code.purge(PolymorphicEmbed.CreateTables)
end,
"ecto.migrate --quiet",
"test"
]
]
Expand Down

0 comments on commit a13ba90

Please sign in to comment.