From: Tom Hughes Date: Tue, 8 Mar 2016 14:12:03 +0000 (+0000) Subject: Use rake test:db to do initial test run X-Git-Tag: live~3876 X-Git-Url: https://git.openstreetmap.org/rails.git/commitdiff_plain/b7bea9c6b3d93247b627976ca50e636eb460b377 Use rake test:db to do initial test run This makes sure the database is initialised by loading the schema dumped after migrating the development database. Fixes #878 Closes #1173 --- diff --git a/INSTALL.md b/INSTALL.md index 61dcbd7f2..034362911 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -193,7 +193,7 @@ bundle exec rake db:migrate To ensure that everything is set up properly, you should now run: ``` -bundle exec rake test +bundle exec rake test:db ``` This test will take a few minutes, reporting tests run, assertions, and any errors. If you receive no errors, then your installation is successful.