From a7d1657111378bac75f1f3a11fd687f741f74c60 Mon Sep 17 00:00:00 2001 From: Marcus Moore Date: Mon, 7 Aug 2023 11:31:00 -0700 Subject: [PATCH] Troubleshooting pipeline: use phpunit in place of artisan test --- .chipperci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.chipperci.yml b/.chipperci.yml index 16ef5a19a..d86f28328 100644 --- a/.chipperci.yml +++ b/.chipperci.yml @@ -37,11 +37,11 @@ pipeline: - name: PHPUnit Unit Tests cmd: | - # php artisan test --testsuite Unit + # phpunit --testsuite Unit - name: PHPUnit Feature Tests cmd: | - # php artisan test --testsuite Feature + # phpunit --testsuite Feature # - name: Browser Tests # cmd: |