mirror of
https://github.com/Codappix/search_core.git
synced 2024-11-22 21:16:11 +01:00
Remove unnecessary output during make commands
This commit is contained in:
parent
b88869ecaa
commit
c2f01b3c32
1 changed files with 3 additions and 3 deletions
6
Makefile
6
Makefile
|
@ -12,7 +12,7 @@ typo3DatabaseHost ?= "127.0.0.1"
|
|||
|
||||
.PHONY: install
|
||||
install: clean
|
||||
COMPOSER_PROCESS_TIMEOUT=1000 composer require -vv --dev typo3/cms-core="$(TYPO3_VERSION)"
|
||||
COMPOSER_PROCESS_TIMEOUT=1000 composer require --dev typo3/cms-core="$(TYPO3_VERSION)"
|
||||
git checkout composer.json
|
||||
|
||||
cgl:
|
||||
|
@ -24,12 +24,12 @@ functionalTests:
|
|||
typo3DatabasePassword=$(typo3DatabasePassword) \
|
||||
typo3DatabaseHost=$(typo3DatabaseHost) \
|
||||
TYPO3_PATH_WEB=$(TYPO3_WEB_DIR) \
|
||||
.Build/bin/phpunit --colors --debug -v \
|
||||
.Build/bin/phpunit --colors -v \
|
||||
-c Tests/Functional/FunctionalTests.xml
|
||||
|
||||
unitTests:
|
||||
TYPO3_PATH_WEB=$(TYPO3_WEB_DIR) \
|
||||
.Build/bin/phpunit --colors --debug -v \
|
||||
.Build/bin/phpunit --colors -v \
|
||||
-c Tests/Unit/UnitTests.xml
|
||||
|
||||
uploadCodeCoverage: uploadCodeCoverageToScrutinizer
|
||||
|
|
Loading…
Reference in a new issue