From e1bbdd90f40054828131eae42be436bb11c0fbe7 Mon Sep 17 00:00:00 2001 From: moozzi Date: Mon, 23 Feb 2026 19:36:11 +0100 Subject: [PATCH] Added $(ARGS) to `test` target --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index b3c8d54..b98e771 100644 --- a/Makefile +++ b/Makefile @@ -23,7 +23,7 @@ console: ## Open Rails console in the web container test: ## Run RSpec in the web container (uses test database) $(COMPOSE) exec -e RAILS_ENV=test -e DATABASE_URL=postgresql://hackorum:hackorum@db:5432/hackorum_test web bin/rails db:prepare - $(COMPOSE) exec -e RAILS_ENV=test -e DATABASE_URL=postgresql://hackorum:hackorum@db:5432/hackorum_test web bundle exec rspec + $(COMPOSE) exec -e RAILS_ENV=test -e DATABASE_URL=postgresql://hackorum:hackorum@db:5432/hackorum_test web bundle exec rspec $(ARGS) db-migrate: ## Run db:migrate $(COMPOSE) exec web bin/rails db:migrate