Sha256: 41c9299bb1d3fa72fde7569ff1fc4f90035dc889f135cf54c8b7e1b57a9a7313
Contents?: true
Size: 1017 Bytes
Versions: 27
Compression:
Stored size: 1017 Bytes
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: develop develop: bundle install @$(MAKE) setup env=test @$(MAKE) setup env=development
Version data entries
27 entries across 27 versions & 1 rubygems