File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 21
21
end
22
22
23
23
database_file = SecureRandom . hex
24
- ActiveRecord ::Base . configurations = {
24
+ ActiveRecord ::Base . configurations = debug = {
25
25
default_env : {
26
26
url : ENV [ 'DATABASE_URL' ] . presence || "sqlite3://#{ Dir . tmpdir } /#{ database_file } .sqlite3" ,
27
27
properties : { allowPublicKeyRetrieval : true } # for JRuby madness
32
32
}
33
33
}
34
34
35
- puts "Testing with #{ ActiveRecord :: Base . configurations } "
35
+ puts "Testing with #{ debug } "
36
36
37
37
# Configure ActiveRecord
38
38
ActiveRecord ::Migration . verbose = false
Original file line number Diff line number Diff line change 8
8
require 'parallel'
9
9
10
10
database_file = SecureRandom . hex
11
- ActiveRecord ::Base . configurations = {
11
+ ActiveRecord ::Base . configurations = debug = {
12
12
default_env : {
13
13
url : ENV [ 'DATABASE_URL' ] . presence || "sqlite3://#{ Dir . tmpdir } /#{ database_file } .sqlite3" ,
14
14
properties : { allowPublicKeyRetrieval : true } # for JRuby madness
19
19
}
20
20
}
21
21
22
- puts "Testing with #{ ActiveRecord :: Base . configurations } "
22
+ puts "Testing with #{ debug } "
23
23
24
24
ENV [ 'WITH_ADVISORY_LOCK_PREFIX' ] ||= SecureRandom . hex
25
25
You can’t perform that action at this time.
0 commit comments