From 3d491fc034d3bc17134812efc2d8ee1880eb944c Mon Sep 17 00:00:00 2001 From: Thomas Citharel Date: Mon, 21 Aug 2023 15:56:48 +0200 Subject: [PATCH] test: correctly skip invalid tests Signed-off-by: Thomas Citharel --- test/graphql/resolvers/admin_test.exs | 1 + test/service/export/participants/csv_test.exs | 2 +- test/tasks/maintenance/detect_spam_test.exs | 1 + test/web/email/group_test.exs | 2 +- 4 files changed, 4 insertions(+), 2 deletions(-) diff --git a/test/graphql/resolvers/admin_test.exs b/test/graphql/resolvers/admin_test.exs index 3e25f9f55..94c2c897a 100644 --- a/test/graphql/resolvers/admin_test.exs +++ b/test/graphql/resolvers/admin_test.exs @@ -347,6 +347,7 @@ defmodule Mobilizon.GraphQL.Resolvers.AdminTest do setup %{conn: conn} do Cachex.clear(:config) + on_exit(fn -> Cachex.clear(:config) end) [conn: conn] end diff --git a/test/service/export/participants/csv_test.exs b/test/service/export/participants/csv_test.exs index f45bb3190..5ebace9c2 100644 --- a/test/service/export/participants/csv_test.exs +++ b/test/service/export/participants/csv_test.exs @@ -7,7 +7,7 @@ defmodule Mobilizon.Service.Export.Participants.CSVTest do alias Mobilizon.Service.Export.Participants.CSV describe "export event participants to csv" do - @tag @skip + @tag :skip test "export basic infos" do %Event{} = event = insert(:event) insert(:participant, event: event, role: :creator) diff --git a/test/tasks/maintenance/detect_spam_test.exs b/test/tasks/maintenance/detect_spam_test.exs index 6942e22c9..bdadd2469 100644 --- a/test/tasks/maintenance/detect_spam_test.exs +++ b/test/tasks/maintenance/detect_spam_test.exs @@ -8,6 +8,7 @@ defmodule Mix.Tasks.Mobilizon.Maintenance.DetectSpamTest do Mix.shell(Mix.Shell.Process) describe "detect spam" do + @tag :skip test "on all content" do insert(:actor, preferred_username: "ham") insert(:actor, preferred_username: "spam") diff --git a/test/web/email/group_test.exs b/test/web/email/group_test.exs index 9ea51994e..79ecd7007 100644 --- a/test/web/email/group_test.exs +++ b/test/web/email/group_test.exs @@ -14,7 +14,7 @@ defmodule Mobilizon.Web.Email.GroupTest do import Mobilizon.Factory describe "Notify of new event" do - @tag @skip + @tag :skip test "members, followers, execept the ones that disabled it" do {_user_creator, actor} = insert_user_with_settings("user@creator.com") %Actor{} = group = insert(:group)