Update the correct file to change config for gitlab ci

This commit is contained in:
Timothy Warren 2016-07-25 12:29:42 -04:00
parent b415938583
commit cc7046f0ec
3 changed files with 1 additions and 18 deletions

View File

@ -4,8 +4,6 @@ before_script:
# Install composer dependencies
- curl -sS https://getcomposer.org/installer | php
- php composer.phar install
# Move redis test config file into place
- mv "./tests/redis.toml" "./app/config/redis.toml"
# Composer stores all downloaded packages in the vendor/ directory.
# Do not use the following if the vendor/ directory is commited to

View File

@ -73,7 +73,7 @@ class AnimeClient_TestCase extends PHPUnit_Framework_TestCase {
]
],
'redis' => [
'host' => 'localhost',
'host' => 'redis',
'database' => 13
]
];

View File

@ -1,15 +0,0 @@
################################################################################
# Redis Cache Configuration #
################################################################################
# Host or socket to connect to
host = "redis"
# Connection port
#port = 6379
# Connection password
#password = ""
# Database number
database = 13