From 4fb4e656fedf35641abc8969e845c10ecfce7173 Mon Sep 17 00:00:00 2001 From: ASpiteri-BCGov <49036255+ASpiteri-BCGov@users.noreply.github.com> Date: Tue, 15 Oct 2024 08:34:05 -0700 Subject: [PATCH] "Added 'Verify test setup' step to testing workflow to print environment variables and directory listing" --- .github/workflows/testing.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index 7d88d4f..1a96e58 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -50,6 +50,12 @@ jobs: export WP_CORE_DIR=/tmp/wordpress export WP_TESTS_DIR=/tmp/wordpress-tests-lib + - name: Verify test setup + run: | + ls -ld /tmp/wordpress-tests-lib + echo $WP_CORE_DIR + echo $WP_TESTS_DIR + - name: Run PHPUnit tests run: vendor/bin/phpunit --configuration vendor/bcgov/wordpress-utils/phpunit.xml.dist