Skip to content

Commit 391f559

Browse files
Anja Leichsenringohader
authored andcommitted
[TASK] Add new Acceptance Tests folder to splitter script
To speed up execution of acceptance tests in bamboo, the available test files are split into work packages. The script only considers test files located in typo3/sysext/core/Acceptance/Backend. With the new main folder InstallTool, that contains tests concerning the stand alone install tool, the script must also consider those files for work packages.
1 parent 7781f33 commit 391f559

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Resources/Core/Build/Scripts/splitAcceptanceTests.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ public function execute()
8080
// Find functional test files
8181
$testFiles = (new Finder())
8282
->files()
83-
->in(__DIR__ . '/../../../../../../../typo3/sysext/core/Tests/Acceptance/Backend')
83+
->in([__DIR__ . '/../../../../../../../typo3/sysext/core/Tests/Acceptance/Backend', __DIR__ . '/../../../../../../../typo3/sysext/core/Tests/Acceptance/InstallTool'])
8484
->name('/Cest\.php$/')
8585
;
8686

0 commit comments

Comments
 (0)