diff --git a/.github/workflows/ci-windows.yaml b/.github/workflows/ci-windows.yaml index 818debcb5..5bb22ca40 100644 --- a/.github/workflows/ci-windows.yaml +++ b/.github/workflows/ci-windows.yaml @@ -72,8 +72,10 @@ jobs: - name: PHPUnit Version run: vendor/bin/simple-phpunit --version - - name: Run Tests - run: vendor/bin/simple-phpunit ${{ env.PHPUNIT_FLAGS }} + - name: Are the flags working + run: vendor/bin/simple-phpunit --filter MakeFunctionalTestTest -v +# - name: Run Tests +# run: vendor/bin/simple-phpunit ${{ env.PHPUNIT_FLAGS }} # coding-standards: # name: "Coding Standards (${{ matrix.php-version }})" diff --git a/tests/Maker/MakeFunctionalTestTest.php b/tests/Maker/MakeFunctionalTestTest.php index 8c1beb7ac..af495d4b2 100644 --- a/tests/Maker/MakeFunctionalTestTest.php +++ b/tests/Maker/MakeFunctionalTestTest.php @@ -29,6 +29,8 @@ public function getTestDetails() { yield 'it_generates_test_with_panther' => [$this->createMakerTest() ->preRun(function () { + dump($_SERVER['MAKER_SKIP_PANTHER_TEST']); + if ($_SERVER['MAKER_SKIP_PANTHER_TEST'] ?? false) { $this->markTestSkipped('Panther test skipped - MAKER_SKIP_PANTHER_TEST set to TRUE.'); }