mirror of https://github.com/FriendsOfTYPO3/tea.git synced 2024-09-19 23:56:13 +02:00

[FOLLOWUP] Fix path of created tests directory (#1059)

The document root for the tests is `.Build/Web`, not `.Build/public`.

Followup to #1058
This commit is contained in:
Oliver Klee 2023-12-12 16:35:47 +01:00 committed by GitHub
parent e9716a3c84
commit ef350037c2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -159,7 +159,7 @@
"@ci:tests:unit",
"@ci:tests:functional"
],
"ci:tests:create-directories": "mkdir -p .Build/public/typo3temp/var/tests",
"ci:tests:create-directories": "mkdir -p .Build/Web/typo3temp/var/tests",
"ci:tests:functional": [
"@ci:tests:create-directories",
"find 'Tests/Functional' -wholename '*Test.php' | parallel --gnu 'echo; echo \"Running functional test suite {}\"; .Build/bin/phpunit -c ./Tests/Functional/FunctionalTests.xml {}';"