Sha256: da167e765028b0b0620b82f5a973567296d42d11bce87128becd1b9cc72f744f
Contents?: true
Size: 1.07 KB
Versions: 4
Compression:
Stored size: 1.07 KB
Contents
include $(shell bundle exec ruby -e 'require "orchestration/make"') # # Example test command # # Define your test tasks here. The default command runs RSpec and Rubocop but # you can feel free to add any other tasks you like. # # Set up your test dependencies and run tests by calling: `make setup test` # # Subsequent test runs can skip the setup step and simply run: `make test` # .PHONY: test test: bundle exec rspec bundle exec rubocop # # Define any custom setup that needs to take place before running tests. # If the command exists, it will be called immediately after the `setup` # command (which starts containers and sets up the database). # # This command can be deleted if it is not needed. # .PHONY: post-setup post-setup: @# Setup tasks that are not already provided by Orchestration go here. # # Launch all dependencies needed for a development environment and set up the # development database. # .PHONY: setup develop: bundle install @$(MAKE) start env=test @$(MAKE) start env=development 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