Skip to content

Commit

Permalink
remove e2e from lib and thus from the distribution
Browse files Browse the repository at this point in the history
  • Loading branch information
joaquinco committed Sep 2, 2024
1 parent 897ce97 commit 8766a78
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 12 deletions.
11 changes: 0 additions & 11 deletions lib/mix/tasks/end_to_end_test.ex

This file was deleted.

6 changes: 5 additions & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ defmodule BoomNotifier.MixProject do
],
aliases: [
quality: ["format", "credo --strict", "dialyzer"],
e2e: ["cmd mix end_to_end_test"]
e2e: &run_e2e/1
],
docs: docs(),
description: description(),
Expand Down Expand Up @@ -96,4 +96,8 @@ defmodule BoomNotifier.MixProject do
]
]
end

defp run_e2e(_) do
Mix.shell().cmd("cd test/example_app && mix deps.get && mix test")
end
end

0 comments on commit 8766a78

Please sign in to comment.