mirror of
https://github.com/Codappix/search_core.git
synced 2024-11-22 21:56:12 +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
|
.PHONY: install
|
||||||
install: clean
|
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
|
git checkout composer.json
|
||||||
|
|
||||||
cgl:
|
cgl:
|
||||||
|
@ -24,12 +24,12 @@ functionalTests:
|
||||||
typo3DatabasePassword=$(typo3DatabasePassword) \
|
typo3DatabasePassword=$(typo3DatabasePassword) \
|
||||||
typo3DatabaseHost=$(typo3DatabaseHost) \
|
typo3DatabaseHost=$(typo3DatabaseHost) \
|
||||||
TYPO3_PATH_WEB=$(TYPO3_WEB_DIR) \
|
TYPO3_PATH_WEB=$(TYPO3_WEB_DIR) \
|
||||||
.Build/bin/phpunit --colors --debug -v \
|
.Build/bin/phpunit --colors -v \
|
||||||
-c Tests/Functional/FunctionalTests.xml
|
-c Tests/Functional/FunctionalTests.xml
|
||||||
|
|
||||||
unitTests:
|
unitTests:
|
||||||
TYPO3_PATH_WEB=$(TYPO3_WEB_DIR) \
|
TYPO3_PATH_WEB=$(TYPO3_WEB_DIR) \
|
||||||
.Build/bin/phpunit --colors --debug -v \
|
.Build/bin/phpunit --colors -v \
|
||||||
-c Tests/Unit/UnitTests.xml
|
-c Tests/Unit/UnitTests.xml
|
||||||
|
|
||||||
uploadCodeCoverage: uploadCodeCoverageToScrutinizer
|
uploadCodeCoverage: uploadCodeCoverageToScrutinizer
|
||||||
|
|
Loading…
Reference in a new issue