Sha256: b22cb0f885861f2f095bac0ab7a0a62464119b86fcc6fb0ff6d60dd484f1ed46
Contents?: true
Size: 558 Bytes
Versions: 4
Compression:
Stored size: 558 Bytes
Contents
# # Example test command # # This command will call `test-setup` before running your usual test pipeline. # # `test-setup` starts all containers specified in `docker-compose.test.yml`, # waits for them to be ready, and runs DB migrations. # # In your CI environment, simply run `make test`. # .PHONY: test test: test-setup bundle exec rspec bundle exec rubocop # Start development containers and create/migrate/seed database .PHONY: develop develop: start bundle install bundle exec rake db:create bundle exec rake db:migrate bundle exec rake db:seed
Version data entries
4 entries across 4 versions & 1 rubygems