We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef9a790 commit d579e18Copy full SHA for d579e18
azure/community_job.yml
@@ -71,10 +71,15 @@ jobs:
71
export USE_ZEND_ALLOC=0
72
export USE_TRACKED_ALLOC=1
73
export ASAN_OPTIONS=exitcode=139
74
- php ./phpunit --exclude-group tty,benchmark,intl-data,transient
75
- if [ $? -gt 128 ]; then
76
- exit 1
77
- fi
+ export SYMFONY_DEPRECATIONS_HELPER=max[total]=999
+ X=0
+ for component in $(find src/Symfony -mindepth 2 -type f -name phpunit.xml.dist -printf '%h\n'); do
+ php ./phpunit $component --exclude-group tty,benchmark,intl-data,transient;
78
+ if [ $? -gt 128 ]; then
79
+ X=1;
80
+ fi
81
+ done
82
+ exit $X
83
displayName: 'Test Symfony'
84
condition: or(succeeded(), failed())
85
- script: |
0 commit comments