File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -102,13 +102,14 @@ jobs:
102102 - name : Run Functional tests
103103 run : |
104104 cd ${FLOW_PATH_ROOT}
105- # we have to doctrine migrate and setup the cr here as otherwise a transaction error will occur:
106- # see also https://github.com/neos/neos-development-collection/pull/5005
107- FLOW_CONTEXT=Testing ./flow doctrine:migrate --quiet; FLOW_CONTEXT=Testing ./flow cr:setup --content-repository node_templates
108105 bin/phpunit -c Build/BuildEssentials/PhpUnit/FunctionalTests.xml Packages/Application/Flowpack.NodeTemplates/Tests/Functional
109106
110107 - name : Show log on failure
111108 if : ${{ failure() }}
112109 run : |
113110 cd ${FLOW_PATH_ROOT}
114111 cat Data/Logs/System_Testing.log
112+ for file in Data/Logs/Exceptions/*; do
113+ echo $file
114+ cat $file
115+ done
You can’t perform that action at this time.
0 commit comments