Pull request event #81 passed

  • Ran for
  • Total time
  • New branch build
.travis.yml
language: ruby
sudo: false
rvm: 2.5.1
cache:
  bundler: true
  directories:
  - $HOME/.rvm
env:
  global:
  - COVERAGE=1
  matrix:
  - INTEGRATION_SPECS=0
  - INTEGRATION_SPECS=1
services:
- redis-server
before_install: gem install bundler
before_script: source .example.env
notifications:
  email: false
Build Config
{
  "os": [
    "linux"
  ],
  "env": {
    "global": [
      "COVERAGE=1"
    ],
    "matrix": [
      "INTEGRATION_SPECS=0",
      "INTEGRATION_SPECS=1"
    ]
  },
  "rvm": [
    "2.5.1"
  ],
  "dist": "trusty",
  "sudo": false,
  "cache": {
    "bundler": true,
    "directories": [
      "$HOME/.rvm"
    ]
  },
  "language": "ruby",
  "services": [
    "redis-server"
  ],
  "before_script": [
    "source .example.env"
  ],
  "notifications": {
    "email": {
      "enabled": false
    }
  },
  "before_install": [
    "gem install bundler"
  ]
}