We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d476894 commit 1d21653Copy full SHA for 1d21653
.github/workflows/ci.yml
@@ -53,7 +53,7 @@ jobs:
53
nohup php -S 0.0.0.0:8080 -t features/fixtures/project/web > features/fixtures/project/var/logs/server.log 2>&1 &
54
sleep 5
55
- name: Functional tests
56
- run: vendor/bin/behat --no-snippets --format=progress --profile=actions -vvv
+ run: php -d error_reporting=6143 vendor/bin/behat --no-snippets --format=progress --profile=actions -vvv
57
- name: Upload logs
58
uses: actions/upload-artifact@master
59
with:
behat.yml
@@ -1,5 +1,7 @@
1
---
2
default: &default
3
+ calls:
4
+ error_reporting: 6143 # 'E_ALL & ~E_DEPRECATED & ~E_USER_DEPRECATED'
5
suites:
6
default:
7
contexts:
0 commit comments