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 0d137d6 commit 77a6adeCopy full SHA for 77a6ade
azure/community_job.yml
@@ -71,10 +71,14 @@ 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
+ 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;
+ if [ $? -gt 128 ]; then
78
+ X=1;
79
+ fi
80
+ done
81
+ exit $X
82
displayName: 'Test Symfony'
83
condition: or(succeeded(), failed())
84
- script: |
0 commit comments