The .travis.yml file used for this job is not available
Build Config
{
"env": {
"global": [
"DATABASE_URL='postgres://localhost:5432/job_board_test'",
"RUBYOPT=-W0"
],
"matrix": [
"INTEGRATION_SPECS='1' COVERAGE='1'",
"INTEGRATION_SPECS='0'"
]
},
"rvm": "2.4.2",
"dist": "trusty",
"sudo": false,
"cache": {
"bundler": true,
"directories": [
"${HOME}/perl5",
"${HOME}/.cache"
]
},
"addons": {
"postgresql": 9.3
},
"language": "ruby",
"services": [
"redis"
],
"after_success": [
"bundle exec codeclimate-test-reporter"
],
"before_script": [
"createdb job_board_test",
"sqitch deploy",
"sqitch verify"
],
"before_install": [
"script/install-sqitch",
"eval \"$(perl -I ~/perl5/lib/perl5/ '-Mlocal::lib')\""
]
}