Skip to content

Commit 71a3b0a

Browse files
committed
TASK: Fix CI cr:setup does not work because nodetypes are not initialised
1 parent 4da027c commit 71a3b0a

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/tests.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)