From ef0476d166b726ac9d7cb50cd1b15df79f90d555 Mon Sep 17 00:00:00 2001 From: "thomas.layh" Date: Tue, 9 Jul 2024 15:47:43 +0200 Subject: [PATCH] chore: add custom FunctionalTests.xml --- Tests/Functional/FunctionalTests.xml | 34 ++++++++++++++++++++++++++++ composer.json | 2 +- 2 files changed, 35 insertions(+), 1 deletion(-) create mode 100644 Tests/Functional/FunctionalTests.xml diff --git a/Tests/Functional/FunctionalTests.xml b/Tests/Functional/FunctionalTests.xml new file mode 100644 index 0000000..6c43b1e --- /dev/null +++ b/Tests/Functional/FunctionalTests.xml @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + ../Classes + + + diff --git a/composer.json b/composer.json index 62a2629..05f89f3 100644 --- a/composer.json +++ b/composer.json @@ -82,7 +82,7 @@ ], "test:functional": [ "[ -e .Build/bin/phpunit ] || composer update", - "XDEBUG_MODE=coverage TYPO3_PATH_WEB=$PWD/.Build/Web typo3DatabaseName=sequenzer typo3DatabaseHost=127.0.0.1 typo3DatabaseUsername=root typo3DatabasePassword=root .Build/bin/phpunit -c .Build/vendor/typo3/testing-framework/Resources/Core/Build/FunctionalTests.xml Tests/Functional" + "XDEBUG_MODE=coverage TYPO3_PATH_WEB=$PWD/.Build/Web typo3DatabaseName=sequenzer typo3DatabaseHost=127.0.0.1 typo3DatabaseUsername=root typo3DatabasePassword=root .Build/bin/phpunit -c Tests/Functional/FunctionalTests.xml Tests/Functional" ], "test:coverage": [ "[ -e .Build/bin/phpunit ] || composer update",