logo

pleroma

My custom branche(s) on git.pleroma.social/pleroma/pleroma git clone https://hacktivis.me/git/pleroma.git
commit: 7d5065819c5aad2229d535cc513826f77f0dd25c
parent fee1e17d877e8b056020d4ffabedf9c434ae2c57
Author: Mark Felder <feld@feld.me>
Date:   Thu, 20 Jun 2024 19:43:39 +0000

Enable erratic tests

Diffstat:

M.gitlab-ci.yml14--------------
Achangelog.d/ci-erratic.skip0
Mtest/test_helper.exs2+-
3 files changed, 1 insertion(+), 15 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml @@ -151,20 +151,6 @@ unit-testing-1.15.8-otp-26: services: *testing_services script: *testing_script -unit-testing-1.13.4-otp-25-erratic: - extends: - - .build_changes_policy - - .using-ci-base - stage: test - retry: 2 - allow_failure: true - cache: *testing_cache_policy - services: *testing_services - script: - - mix ecto.create - - mix ecto.migrate - - mix pleroma.test_runner --only=erratic - formatting-1.15: extends: .build_changes_policy image: &formatting_elixir elixir:1.15-alpine diff --git a/changelog.d/ci-erratic.skip b/changelog.d/ci-erratic.skip diff --git a/test/test_helper.exs b/test/test_helper.exs @@ -6,7 +6,7 @@ Code.put_compiler_option(:warnings_as_errors, true) ExUnit.configure(capture_log: true, max_cases: System.schedulers_online()) -ExUnit.start(exclude: [:federated, :erratic]) +ExUnit.start(exclude: [:federated]) if match?({:unix, :darwin}, :os.type()) do excluded = ExUnit.configuration() |> Keyword.get(:exclude, [])