mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Tests now require MySQL2 adapter in order to run
This commit is contained in:
parent
72df64b4e1
commit
50d5e0f7e8
1 changed files with 2 additions and 11 deletions
|
@ -81,10 +81,10 @@ $ gem install bundler
|
|||
and run:
|
||||
|
||||
<shell>
|
||||
$ bundle install --without db
|
||||
$ bundle install
|
||||
</shell>
|
||||
|
||||
This command will install all dependencies except the MySQL and PostgreSQL Ruby drivers. We will come back at these soon. With dependencies installed, you can run the test suite with:
|
||||
This command will install all dependencies. With dependencies installed, you can run the test suite with:
|
||||
|
||||
<shell>
|
||||
$ rake test
|
||||
|
@ -139,15 +139,6 @@ $ sudo apt-get install mysql-server libmysqlclient15-dev
|
|||
$ sudo apt-get install postgresql postgresql-client postgresql-contrib libpq-dev
|
||||
</shell>
|
||||
|
||||
After that run:
|
||||
|
||||
<shell>
|
||||
$ rm .bundle/config
|
||||
$ bundle install
|
||||
</shell>
|
||||
|
||||
We need first to delete +.bundle/config+ because Bundler remembers in that file that we didn't want to install the "db" group (alternatively you can edit the file).
|
||||
|
||||
In order to be able to run the test suite against MySQL you need to create a user named +rails+ with privileges on the test databases:
|
||||
|
||||
<shell>
|
||||
|
|
Loading…
Reference in a new issue