We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
cr:setup
1 parent 4da027c commit 71a3b0aCopy full SHA for 71a3b0a
1 file changed
.github/workflows/tests.yml
@@ -102,13 +102,14 @@ jobs:
102
- name: Run Functional tests
103
run: |
104
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
108
bin/phpunit -c Build/BuildEssentials/PhpUnit/FunctionalTests.xml Packages/Application/Flowpack.NodeTemplates/Tests/Functional
109
110
- name: Show log on failure
111
if: ${{ failure() }}
112
113
114
cat Data/Logs/System_Testing.log
+ for file in Data/Logs/Exceptions/*; do
+ echo $file
+ cat $file
115
+ done
0 commit comments