From 8e2f8df849d48aecdf6ce98905ef5585939cf412 Mon Sep 17 00:00:00 2001 From: Paula Quispe Date: Fri, 16 Sep 2022 15:13:56 -0400 Subject: [PATCH] KR-13394 --- .circleci/config.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 104a5bd96..37afed28d 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -28,7 +28,9 @@ jobs: name: Run Test Units command: | mkdir -p coverage - XDEBUG_MODE=coverage vendor/phpunit/phpunit/phpunit --stop-on-error --testdox-html coverage/result.html --coverage-html coverage --verbose tests/unit/ + vendor/phpunit/phpunit/phpunit --stop-on-error --testdox-html coverage/result.html --coverage-html coverage --verbose tests/unit/ + environment: + XDEBUG_MODE: coverage - store_artifacts: path: coverage destination: coverage