mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-21 20:36:12 +01:00
[FEATURE] Add composerUnused
suite to runTests.sh
(#1390)
This commit is contained in:
parent
8d80a25d43
commit
0dce81e9ca
1 changed files with 6 additions and 0 deletions
|
@ -151,6 +151,7 @@ Options:
|
|||
- composer: "composer" with all remaining arguments dispatched.
|
||||
- composerInstallMax: "composer update", with no platform.php config.
|
||||
- composerInstallMin: "composer update --prefer-lowest", with platform.php set to PHP version x.x.0.
|
||||
- composerUnused: Finds unused Composer packages.
|
||||
- docsGenerate: Renders the extension ReST documentation.
|
||||
- functional: PHP functional tests
|
||||
- lintTypoScript: TypoScript linting
|
||||
|
@ -519,6 +520,11 @@ case ${TEST_SUITE} in
|
|||
${CONTAINER_BIN} run ${CONTAINER_COMMON_PARAMS} --name composer-normalize-${SUFFIX} -e COMPOSER_CACHE_DIR=.cache/composer -e COMPOSER_ROOT_VERSION=${COMPOSER_ROOT_VERSION} ${IMAGE_DOCS} /bin/sh -c "${COMMAND}"
|
||||
SUITE_EXIT_CODE=$?
|
||||
;;
|
||||
composerUnused)
|
||||
COMMAND="composer ci:composer:unused"
|
||||
${CONTAINER_BIN} run ${CONTAINER_COMMON_PARAMS} --name composer-unused-${SUFFIX} -e COMPOSER_CACHE_DIR=.cache/composer -e COMPOSER_ROOT_VERSION=${COMPOSER_ROOT_VERSION} ${IMAGE_PHP} /bin/sh -c "${COMMAND}"
|
||||
SUITE_EXIT_CODE=$?
|
||||
;;
|
||||
docsGenerate)
|
||||
mkdir -p Documentation-GENERATED-temp
|
||||
chown -R ${HOST_UID}:${HOST_PID} Documentation-GENERATED-temp
|
||||
|
|
Loading…
Reference in a new issue