Merge branch 'correctly-skip-tests' into 'main'

test: correctly skip invalid tests

See merge request framasoft/mobilizon!1436
This commit is contained in:
Thomas Citharel 2023-08-22 11:57:47 +00:00
commit f61001f81e
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)