OLD | NEW |
(Empty) | |
| 1 Skia-Buildbot Repository |
| 2 ======================== |
| 3 |
| 4 This repo contains infrastructure code for Skia. |
| 5 |
| 6 |
| 7 Quick Start |
| 8 =========== |
| 9 |
| 10 Tests require a local installation of MySQL. For a Debian based distro: |
| 11 $ sudo apt-get install mysql-client mysql-server |
| 12 |
| 13 Then, to set up local versions of the production databases: |
| 14 $ cd go/database |
| 15 $ ./setup_test_db |
| 16 |
| 17 |
| 18 Database Setup for Testing |
| 19 ========================== |
| 20 Tests which use the database package's testutils require you to have a MySQL |
| 21 instance running with a database named "sk_testing" and users called |
| 22 "readwrite" and "test_root" with appropriate permissions for sk_testing. |
| 23 The 'setup_test_db' script in 'go/database' is included for convenience in |
| 24 setting up this test database and user. |
OLD | NEW |