diff options
author | Rémy Coutable <remy@rymai.me> | 2017-04-24 16:39:10 +0000 |
---|---|---|
committer | Rémy Coutable <remy@rymai.me> | 2017-04-24 16:39:10 +0000 |
commit | d2d9a11e09b1cee1d463ad55052b18ceabaeb247 (patch) | |
tree | 53850df6acbd1535b6086874e83f800c20dc9771 /config | |
parent | df65e4376e2455ec39890a58f3428a98c2317516 (diff) | |
parent | 075d2bacfd6e9d34763ac905c45c8a7dc1278c35 (diff) | |
download | gitlab-ce-d2d9a11e09b1cee1d463ad55052b18ceabaeb247.tar.gz |
Merge branch 'test-pg' into 'master'
Test both PostgreSQL and MySQL for the win
Closes #2582
See merge request !10156
Diffstat (limited to 'config')
-rw-r--r-- | config/database.yml.mysql | 2 | ||||
-rw-r--r-- | config/database.yml.postgresql | 5 | ||||
-rw-r--r-- | config/initializers/rspec_profiling.rb | 2 |
3 files changed, 7 insertions, 2 deletions
diff --git a/config/database.yml.mysql b/config/database.yml.mysql index a33e40e8eb3..db1b712d3bc 100644 --- a/config/database.yml.mysql +++ b/config/database.yml.mysql @@ -25,6 +25,7 @@ development: pool: 5 username: root password: "secure password" + # host: localhost # socket: /tmp/mysql.sock # Warning: The database defined as "test" will be erased and @@ -39,4 +40,5 @@ test: &test pool: 5 username: root password: + # host: localhost # socket: /tmp/mysql.sock diff --git a/config/database.yml.postgresql b/config/database.yml.postgresql index 7067e0fe402..c517a4c0cb8 100644 --- a/config/database.yml.postgresql +++ b/config/database.yml.postgresql @@ -9,7 +9,7 @@ production: # username: git # password: # host: localhost - # port: 5432 + # port: 5432 # # Development specific @@ -21,6 +21,7 @@ development: pool: 5 username: postgres password: + # host: localhost # # Staging specific @@ -32,6 +33,7 @@ staging: pool: 5 username: postgres password: + # host: localhost # Warning: The database defined as "test" will be erased and # re-generated from your development database when you run "rake". @@ -43,3 +45,4 @@ test: &test pool: 5 username: postgres password: + # host: localhost diff --git a/config/initializers/rspec_profiling.rb b/config/initializers/rspec_profiling.rb index 764c067c6f0..b909cc5b9a4 100644 --- a/config/initializers/rspec_profiling.rb +++ b/config/initializers/rspec_profiling.rb @@ -38,7 +38,7 @@ if Rails.env.test? end end - if ENV.has_key?('CI') + if ENV.has_key?('CI') && ENV['GITLAB_DATABASE'] == 'postgresql' RspecProfiling::VCS::Git.prepend(RspecProfilingExt::Git) RspecProfiling::Run.prepend(RspecProfilingExt::Run) end |