Skip to content

Commit 424d669

Browse files
committed
Add some additional steps to MySQL test setup
1 parent 9e38777 commit 424d669

1 file changed

Lines changed: 9 additions & 1 deletion

File tree

RUNNING_TESTS.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,15 @@ CREATE DATABASE activerecord_unittest2;
8383
GRANT ALL PRIVILEGES ON activerecord_unittest2.* TO 'rails'@'localhost';
8484
```
8585

86-
Then edit test/rails/config.yml for the appropriate configuration credentials.
86+
Then edit test/rails/config.yml for the appropriate configuration credentials. You may need to add a "password: testtest9" entry to authenticate.
87+
88+
Additionally, you may need to add the following to the config.yml file to disable SSL and allow public key retrieval:
89+
90+
```yaml
91+
properties:
92+
useSSL: false
93+
allowPublicKeyRetrieval: true
94+
```
8795
8896
### ActiveRecord (Rails) Tests
8997

0 commit comments

Comments
 (0)