mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
22877a9ddd
After running `bundle exec rake test:sqlite3` and `bundle exec rake test:sqlite3_mem` on my VM I noticed that it had created untracked files: ```bash vagrant@ubuntu-bionic:/rails/activerecord$ git status Untracked files: (use "git add <file>..." to include in what will be committed) db/ file::memory: ``` To prevent them from being accidentally committed I put 'file::memory:' to `activerecord/db/` folder and added the folder to .gitignore Also, we could consider fixing this by removing `db/` folder in each test that creates the folder. It would be great if someone confirms that it happens not only on my VM.
4 lines
59 B
Text
4 lines
59 B
Text
/db/
|
|
/sqlnet.log
|
|
/test/config.yml
|
|
/test/fixtures/*.sqlite*
|