From 2094826d2f59d94d1f8635eec57da9cc63a0e330 Mon Sep 17 00:00:00 2001 From: Jyri-Petteri Paloposki Date: Sun, 29 Jun 2025 13:26:58 +0300 Subject: [PATCH] Change the command used for running tests --- script/cibuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/script/cibuild b/script/cibuild index 4a35a3b4..e7f8aaa6 100755 --- a/script/cibuild +++ b/script/cibuild @@ -34,5 +34,5 @@ else $docker_compose run web bin/rake db:migrate $docker_compose run web bin/rake db:seed fi -$docker_compose run web bin/rake test - +echo "==> Running the tests…" +$docker_compose run web bin/rails test