diff options
Diffstat (limited to '.gitlab/test.yml')
| -rw-r--r-- | .gitlab/test.yml | 18 |
1 files changed, 3 insertions, 15 deletions
diff --git a/.gitlab/test.yml b/.gitlab/test.yml index 2bf8880..a190e86 100644 --- a/.gitlab/test.yml +++ b/.gitlab/test.yml @@ -1,14 +1,3 @@ -size: - image: docker:stable - stage: test - allow_failure: true # temporary until we can shrink the image size. - timeout: 1 minute - script: - - docker login -u gitlab-ci-token -p $CI_JOB_TOKEN $CI_REGISTRY - - docker pull $TMP_IMAGE - - docker image ls $TMP_IMAGE - - docker image inspect $TMP_IMAGE - unit: stage: test script: @@ -17,9 +6,8 @@ unit: - bundle exec rspec spec/unit integration: - image: - name: $TMP_IMAGE - entrypoint: [""] stage: test script: - - bash -lc "cd $LM_HOME && bundle install && bundle exec rspec spec/integration" + - gem install bundler -v '~> 2.0' + - bundle install + - bundle exec rspec spec/integration |
