Makefile
COMPOSE ?= podman-compose .PHONY: deps_updeps_up: $(COMPOSE) up -d .PHONY: deps_downdeps_down: - $(COMPOSE) down .PHONY: run_testrun_test: THREESCALE_CORE_INTERNAL_API=http://user:password@localhost:3001 bundle exec rake test .PHONY: testtest: deps_up run_test deps_down .PHONY: license_finderlicense_finder: $(COMPOSE) run --rm -e COVERAGE=$(COVERAGE) pisoni bundle exec rake license_finder:check .PHONY: stopstop: $(COMPOSE) stop