Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ignore SQLite3 database files generated by parallel testing #37053

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions actionmailbox/.gitignore
@@ -1,5 +1,6 @@
/test/dummy/db/*.sqlite3
/test/dummy/db/*.sqlite3-journal
/test/dummy/db/*.sqlite3-*
/test/dummy/log/*.log
/test/dummy/tmp/
/tmp/
1 change: 1 addition & 0 deletions actiontext/.gitignore
@@ -1,5 +1,6 @@
/test/dummy/db/*.sqlite3
/test/dummy/db/*.sqlite3-journal
/test/dummy/db/*.sqlite3-*
/test/dummy/log/*.log
/test/dummy/public/packs-test
/test/dummy/tmp/
Expand Down
1 change: 1 addition & 0 deletions activestorage/.gitignore
@@ -1,6 +1,7 @@
/src/
/test/dummy/db/*.sqlite3
/test/dummy/db/*.sqlite3-journal
/test/dummy/db/*.sqlite3-*
/test/dummy/log/*.log
/test/dummy/tmp/
/test/service/configurations.yml
Expand Up @@ -11,6 +11,7 @@
# Ignore the default SQLite database.
/db/*.sqlite3
/db/*.sqlite3-journal
/db/*.sqlite3-*

<% end -%>
# Ignore all logfiles and tempfiles.
Expand Down
Expand Up @@ -5,6 +5,7 @@ pkg/
<% if sqlite3? -%>
<%= dummy_path %>/db/*.sqlite3
<%= dummy_path %>/db/*.sqlite3-journal
<%= dummy_path %>/db/*.sqlite3-*
<% end -%>
<%= dummy_path %>/log/*.log
<% unless options[:skip_javascript] -%>
Expand Down