CI: Add testing stage for federated tests.

This commit is contained in:
lain 2019-07-22 16:18:37 +02:00 committed by stwf
parent 717d246491
commit 74aa42998f
1 changed files with 12 additions and 0 deletions

View File

@ -55,6 +55,18 @@ unit-testing:
- mix ecto.migrate
- mix coveralls --preload-modules
federated-testing:
stage: test
services:
- name: lainsoykaf/postgres-with-rum
alias: postgres
command: ["postgres", "-c", "fsync=off", "-c", "synchronous_commit=off", "-c", "full_page_writes=off"]
script:
- mix deps.get
- mix ecto.create
- mix ecto.migrate
- mix test --trace --only federated
unit-testing-rum:
stage: test
services: