@@ -57,22 +57,20 @@ jobs:
57
57
sed -i "s/function_exists('pcntl_fork')/false/" tests/Filesystem/FilesystemTest.php
58
58
php vendor/bin/phpunit
59
59
displayName: 'Test Laravel'
60
- # Symfony has complicated custom PHPUnit handling -- we'd at least need an
61
- # --ignore-platform-reqs in there, or run the install under a different version.
62
- # - script: |
63
- # - git clone https://github.com/symfony/symfony.git --branch=master --depth=1
64
- # - cd symfony
65
- # - php7.3 /usr/bin/composer install --no-progress
66
- # - export USE_ZEND_ALLOC=0
67
- # - export USE_TRACKED_ALLOC=1
68
- # - export ASAN_OPTIONS=exitcode=139
69
- # - # Close stdin because we hang on some kind of tty test otherwise.
70
- # - php ./phpunit 0<&-
71
- # - if [ $? -gt 128 ]; then
72
- # - exit 1
73
- # - fi
74
- # - displayName: 'Test Symfony'
75
- # - condition: or(succeeded(), failed())
60
+ - script : |
61
+ git clone https://github.com/symfony/symfony.git --branch=master --depth=1
62
+ cd symfony
63
+ php7.3 /usr/bin/composer install --no-progress
64
+ php7.3 ./phpunit install
65
+ export USE_ZEND_ALLOC=0
66
+ export USE_TRACKED_ALLOC=1
67
+ export ASAN_OPTIONS=exitcode=139
68
+ php ./phpunit --exclude-group tty,benchmark,intl-data,transient
69
+ if [ $? -gt 128 ]; then
70
+ exit 1
71
+ fi
72
+ displayName: 'Test Symfony'
73
+ condition: or(succeeded(), failed())
76
74
- script : |
77
75
git clone https://github.com/amphp/amp.git --branch=master --depth=1
78
76
cd amp
0 commit comments