Skip to content

Commit

Permalink
Remove test.sqlite3 from version tracker
Browse files Browse the repository at this point in the history
  • Loading branch information
nepalez committed Jun 17, 2017
1 parent dfb0146 commit 57e189c
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@
/pkg/
/spec/reports/
/tmp/
/spec/dummy/db/*.sqlite3
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ sudo: false
language: ruby
cache: bundler
script:
- bundle exec rspec
- bundle exec rake
rvm:
- 2.3.0
- ruby-head
Expand Down
2 changes: 1 addition & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ load "spec/dummy/Rakefile"

# Declares gem's own tasks.
desc "Runs test suite."
task default: %w(dummy:db:migrate) do
task default: %w(dummy:db:create dummy:db:migrate) do
system "bundle exec rspec spec"
end
2 changes: 1 addition & 1 deletion spec/dummy/db/migrate/20170211104800_create_users.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
class CreateUsers < ActiveRecord::Migration
class CreateUsers < ActiveRecord::Migration[4.2]
def change
create_table :users
end
Expand Down
Binary file removed spec/dummy/db/test.sqlite3
Binary file not shown.

0 comments on commit 57e189c

Please sign in to comment.