diff options
| -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 1215d24..f2a3b2c 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -12,14 +12,13 @@ test:jessie: &test      POSTGRES_DB: mauve      POSTGRES_USER: mauveuser      POSTGRES_PASSWORD: "" -  variables:      DISTRO: jessie    before_script:      - apt install libpq-dev postgresql-server-dev-9.4    script:      - apt install libsqlite3-dev rake ruby-log4r ruby-ipaddress ruby-json ruby-sanitize ruby-rubymail thin ruby-haml ruby-haml-contrib ruby-redcloth ruby-rack ruby-rack-protection ruby-rack-flash3 ruby-tilt ruby-sinatra ruby-locale ruby-rack-test ruby-webmock ruby-timecop ruby-test-unit      - bundle install -j $(nproc) --path vendor/bundle --without development -    - POSTGRES_URL=postgres://$POSTGRES_USER:$POSTGRES_PASSWORD@postgres/$POSTGRES_DB bundle exec rake test +    - "POSTGRES_URL=postgres://$POSTGRES_USER:$POSTGRES_PASSWORD@postgres/$POSTGRES_DB bundle exec rake test"  .test:stretch:    <<: *test  | 
