diff options
author | rinpatch <rinpatch@sdf.org> | 2019-06-03 11:24:03 +0300 |
---|---|---|
committer | rinpatch <rinpatch@sdf.org> | 2019-06-03 11:24:03 +0300 |
commit | c3bcc4f6a2d23574de2feafe8b649745a9b96179 (patch) | |
tree | 80e3151ec03207f3f560b82ff086322d58a22c7d | |
parent | 1236c5dbf55d631b10ad0e73836a2a9cd43ddaa8 (diff) | |
download | pleroma-c3bcc4f6a2d23574de2feafe8b649745a9b96179.tar.gz |
CI: Replace mix test and mix coveralls with just mix coveralls
`mix coveralls` runs the tests by itself, exits with failure if one of them
fails and accepts the same args, so there is no reason to run two of
them at the same time.
-rw-r--r-- | .gitlab-ci.yml | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 53f05ae92..939175218 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -52,8 +52,7 @@ unit-testing: - mix deps.get - mix ecto.create - mix ecto.migrate - - mix test --trace --preload-modules - - mix coveralls + - mix coveralls --trace --preload-modules unit-testing-rum: stage: test |