Add PHP output to artifact
Do not clutter stdout in web ui. Instead move PHP output to a file and add this one to artifacts.
This commit is contained in:
parent
221f9bc4f0
commit
177c654106
1 changed files with 2 additions and 1 deletions
|
@ -36,7 +36,7 @@ test:acceptance:
|
||||||
- export LOCAL_IP=$(ip a | grep inet | sed -n 2p | xargs | cut -d" " -f2 | cut -d"/" -f1)
|
- export LOCAL_IP=$(ip a | grep inet | sed -n 2p | xargs | cut -d" " -f2 | cut -d"/" -f1)
|
||||||
- export TESTING_DOMAIN="$LOCAL_IP:8080"
|
- export TESTING_DOMAIN="$LOCAL_IP:8080"
|
||||||
- export TYPO3_CONTEXT=Testing/Acceptance
|
- export TYPO3_CONTEXT=Testing/Acceptance
|
||||||
- php -S "$TESTING_DOMAIN" -t web &
|
- php -S "$TESTING_DOMAIN" -t web &> php.log.txt &
|
||||||
script:
|
script:
|
||||||
- ./vendor/bin/codecept run --env=gitlab-ci
|
- ./vendor/bin/codecept run --env=gitlab-ci
|
||||||
artifacts:
|
artifacts:
|
||||||
|
@ -44,3 +44,4 @@ test:acceptance:
|
||||||
expire_in: 10 mins
|
expire_in: 10 mins
|
||||||
paths:
|
paths:
|
||||||
- tests/_output/
|
- tests/_output/
|
||||||
|
- php.log.txt
|
||||||
|
|
Loading…
Reference in a new issue