diff options
author | Lain Soykaf <lain@lain.com> | 2023-11-30 13:54:07 +0400 |
---|---|---|
committer | Lain Soykaf <lain@lain.com> | 2023-11-30 13:54:07 +0400 |
commit | d99e139c6bec91150a10b68c032019a163eccf04 (patch) | |
tree | bf15545678280bc72a9e9561f4d722019e8aaa76 | |
parent | eb6be30602f95cf86aef465229dacbdcb92c3c58 (diff) | |
download | pleroma-d99e139c6bec91150a10b68c032019a163eccf04.tar.gz pleroma-d99e139c6bec91150a10b68c032019a163eccf04.zip |
CI: Remove test coverage
-rw-r--r-- | .gitlab-ci.yml | 8 | ||||
-rw-r--r-- | mix.exs | 1 |
2 files changed, 1 insertions, 8 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 10a843af2..1edfc02ea 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -125,13 +125,7 @@ unit-testing: script: - mix ecto.create - mix ecto.migrate - - mix test --cover --preload-modules - coverage: '/^Line total: ([^ ]*%)$/' - artifacts: - reports: - coverage_report: - coverage_format: cobertura - path: coverage.xml + - mix test --preload-modules unit-testing-erratic: extends: @@ -190,7 +190,6 @@ defmodule Pleroma.Mixfile do {:ex_machina, "~> 2.4", only: :test}, {:credo, "~> 1.6", only: [:dev, :test], runtime: false}, {:mock, "~> 0.3.5", only: :test}, - {:covertool, "~> 2.0", only: :test}, {:hackney, "~> 1.18.0", override: true}, {:mox, "~> 1.0", only: :test}, {:websockex, "~> 0.4.3", only: :test}, |