Disable Sentry in test mode

Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
Thomas Citharel 2021-02-08 11:52:16 +01:00
parent 69607d2c8f
commit 4d7203a1d2
No known key found for this signature in database
GPG Key ID: A061B9DDE0CA0773
1 changed files with 7 additions and 2 deletions

View File

@ -2,7 +2,10 @@ defmodule Mobilizon.Web.Endpoint do
@moduledoc """
Endpoint for Mobilizon app
"""
use Sentry.PlugCapture
if Application.fetch_env!(:mobilizon, :env) !== :test do
use Sentry.PlugCapture
end
use Phoenix.Endpoint, otp_app: :mobilizon
use Absinthe.Phoenix.Endpoint
@ -83,5 +86,7 @@ defmodule Mobilizon.Web.Endpoint do
String.replace_leading(url(), "http", "ws")
end
plug(Sentry.PlugContext)
if Application.fetch_env!(:mobilizon, :env) !== :test do
plug(Sentry.PlugContext)
end
end