pasosdeJesus/sivel2_gen

View on GitHub
.travis.yml

Summary

Maintainability
Test Coverage
language: ruby

rvm:
        - 2.7.1

addons:
        postgresql: '10'

apt:
        packages:
                - postgresql-10
                - postgresql-client-10

notifications:
        email: false


env:
        global:
                - NOKOGIRI_USE_SYSTEM_LIBRARIES=true
                - CC_TEST_REPORTER_ID=1486a4589ae9326a7a567e9599edd0ecd306c65e5f359cc724855c2a34efe67b
                - TRAVIS_NODE_VERSION="10.16.3"


before_install: 
        - nvm install node
        - curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
        - chmod +x ./cc-test-reporter
        - ./cc-test-reporter before-build
        - sudo locale-gen --no-archive es_CO.UTF-8
        - sudo /etc/init.d/postgresql stop
        - sudo /etc/init.d/postgresql start 10
        - cd test/dummy
        - psql -h 127.0.0.1 -c 'CREATE DATABASE sivel2gen_pru;' -U postgres
        - gem install bundler
        - gem update --system
        - bundle install
        - cp config/database.travis.yml config/database.yml
        - cp db/structure.sql db/structure.sql.copia # travis no soporta PostreSQL 10
        - sed -e 's/provider = libc,//g;s/SET default_table_access_method.*/-- &/g' db/structure.sql.copia > db/structure.sql 
        - rake db:setup
        - rake msip:indices
        - yarn install
        - cd ../..

script: 
        - CONFIG_HOSTS=www.example.com bundle exec rails test -b

after_script:
        - ./cc-test-reporter after-build -t simplecov --exit-code $TRAVIS_TEST_RESULT