mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-10 04:16:13 +01: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:
parent
e9716a3c84
commit
ef350037c2
1 changed files with 1 additions and 1 deletions
|
@ -159,7 +159,7 @@
|
||||||
"@ci:tests:unit",
|
"@ci:tests:unit",
|
||||||
"@ci:tests:functional"
|
"@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:functional": [
|
||||||
"@ci:tests:create-directories",
|
"@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 {}';"
|
"find 'Tests/Functional' -wholename '*Test.php' | parallel --gnu 'echo; echo \"Running functional test suite {}\"; .Build/bin/phpunit -c ./Tests/Functional/FunctionalTests.xml {}';"
|
||||||
|
|
Loading…
Reference in a new issue