summaryrefslogtreecommitdiff
path: root/mix.exs
diff options
context:
space:
mode:
authorMark Felder <feld@feld.me>2023-11-08 12:21:34 -0500
committerMark Felder <feld@feld.me>2023-11-08 12:44:57 -0500
commite23672d82f0a6e61bf4ada65cfca6cfbc647710d (patch)
treeed297472ade3dcf0fd62ab11ccac3bf062f78dfb /mix.exs
parent17524865e528e69ee92ab3e3911782d79b4b3be0 (diff)
downloadpleroma-e23672d82f0a6e61bf4ada65cfca6cfbc647710d.tar.gz
pleroma-e23672d82f0a6e61bf4ada65cfca6cfbc647710d.zip
Ensure benchee doesn't run unless we are executing benchmarks
Diffstat (limited to 'mix.exs')
-rw-r--r--mix.exs4
1 files changed, 2 insertions, 2 deletions
diff --git a/mix.exs b/mix.exs
index 3c1ce1f7e..e4c14fc9f 100644
--- a/mix.exs
+++ b/mix.exs
@@ -176,7 +176,6 @@ defmodule Pleroma.Mixfile do
{:prometheus_ecto, "~> 1.4"},
{:recon, "~> 2.5"},
{:joken, "~> 2.0"},
- {:benchee, "~> 1.0"},
{:pot, "~> 1.0"},
{:ex_const, "~> 0.2"},
{:plug_static_index_html, "~> 1.0.0"},
@@ -202,7 +201,8 @@ defmodule Pleroma.Mixfile do
{:covertool, "~> 2.0", only: :test},
{:hackney, "~> 1.18.0", override: true},
{:mox, "~> 1.0", only: :test},
- {:websockex, "~> 0.4.3", only: :test}
+ {:websockex, "~> 0.4.3", only: :test},
+ {:benchee, "~> 1.0", only: :benchmark}
] ++ oauth_deps()
end