Skip to content
Snippets Groups Projects
Commit dc47cd5b authored by Christian Kuhn's avatar Christian Kuhn
Browse files

[TASK] Fix travis after test framework extraction

Change-Id: I258399a02020ba492a2e52d76360fe0d866ee965
Resolves: #80617
Releases: master
Reviewed-on: https://review.typo3.org/52303


Reviewed-by: default avatarWouter Wolters <typo3@wouterwolters.nl>
Tested-by: default avatarWouter Wolters <typo3@wouterwolters.nl>
Tested-by: default avatarTYPO3com <no-reply@typo3.com>
Reviewed-by: default avatarChristian Kuhn <lolli@schwarzbu.ch>
Tested-by: default avatarChristian Kuhn <lolli@schwarzbu.ch>
parent 388be45e
Branches
Tags
No related merge requests found
......@@ -57,19 +57,19 @@ before_script:
script:
- >
if [[ "$UNIT_TESTS" == "yes" ]]; then
./bin/phpunit -c components/testing_framework/Resources/Core/Build/UnitTests.xml
./bin/phpunit -c vendor/typo3/testing-framework/Resources/Core/Build/UnitTests.xml
fi
- >
if [[ "$FUNCTIONAL_TESTS" == "yes" ]]; then
./components/testing_framework/Resources/Core/Build/Scripts/splitFunctionalTests.sh 14
parallel --jobs 4 -a <(seq 0 13) --gnu './bin/phpunit -c components/testing_framework/Resources/Core/Build/FunctionalTests-Job-{}.xml'
./vendor/typo3/testing-framework/Resources/Core/Build/Scripts/splitFunctionalTests.sh 14
parallel --jobs 4 -a <(seq 0 13) --gnu './bin/phpunit -c vendor/typo3/testing-framework/Resources/Core/Build/FunctionalTests-Job-{}.xml'
fi
- >
if [[ "$JSUNIT_TESTS" == "yes" ]]; then
cd Build && npm update -g npm && npm install && cd ..
./Build/node_modules/karma/bin/karma start components/testing_framework/Resources/Core/Build/Configuration/JSUnit/karma.conf.js --single-run
./Build/node_modules/karma/bin/karma start vendor/typo3/testing-framework/Resources/Core/Build/Configuration/JSUnit/karma.conf.js --single-run
fi
- >
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment