From b916ad0bfe0f1ca6f16f1c12531f418d6d24d732 Mon Sep 17 00:00:00 2001 From: ajugo Date: Wed, 15 Nov 2023 10:59:54 +0100 Subject: [PATCH] Fix makefile for test [SCI-9570] (#6631) --- Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 246d213e3..d183c701d 100644 --- a/Makefile +++ b/Makefile @@ -94,7 +94,11 @@ tests-ci: -e ENABLE_USER_CONFIRMATION=false \ -e ENABLE_USER_REGISTRATION=true \ -e CORE_API_RATE_LIMIT=1000000 \ - --rm web bash -c "rake db:create && rake db:migrate && bundle exec rspec ./spec/requests/api/" + -e PROTOCOLS_IO_ACCESS_TOKEN=PROTOCOLS_IO_ACCESS_TOKEN \ + -e ENABLE_WEBHOOKS=true \ + --rm web bash -c "rake db:create && rake db:migrate && \ + yarn install && yarn build && yarn build:css && rails tailwindcss:build && \ + bundle exec rspec ./spec/" console: @$(MAKE) rails cmd="rails console"