From 92fad1003b363fd532f73017ecfa37ed079789ad Mon Sep 17 00:00:00 2001 From: Ramon Wenger Date: Wed, 10 Feb 2021 13:15:30 +0100 Subject: [PATCH] Keep the error output for logging purposes --- bitbucket-pipelines.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bitbucket-pipelines.yml b/bitbucket-pipelines.yml index f3695fec..3ed619cb 100644 --- a/bitbucket-pipelines.yml +++ b/bitbucket-pipelines.yml @@ -58,8 +58,8 @@ aliases: - npm run "install:cypress" --prefix client - psql -U $DATABASE_USER -h $DATABASE_HOST -c "create database $DATABASE_NAME" - python server/manage.py dummy_data - - python server/manage.py runserver > /dev/null 2>&1 & - - npm run dev --prefix client > /dev/null 2>&1 & + - python server/manage.py runserver 2>&1 > /dev/null & + - npm run dev --prefix client 2>&1 > /dev/null & - cd client - curl http://localhost:8000/beta-login - npm run test:cypress