Browse Source

CI: Add testing stage for federated tests.

feature/compile_get
lain stwf 4 years ago
parent
commit
74aa42998f
1 changed files with 12 additions and 0 deletions
  1. +12
    -0
      .gitlab-ci.yml

+ 12
- 0
.gitlab-ci.yml 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:


Loading…
Cancel
Save