test: correctly skip invalid tests

Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
Thomas Citharel 2023-08-21 15:56:48 +02:00
parent d29f1e1ee2
commit 3d491fc034
No known key found for this signature in database
GPG Key ID: A061B9DDE0CA0773
4 changed files with 4 additions and 2 deletions

View File

@ -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

View File

@ -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)

View File

@ -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")

View File

@ -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)