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 f3c45c1 commit 51147e2Copy full SHA for 51147e2
azure/community_job.yml
@@ -52,10 +52,11 @@ jobs:
52
cd framework
53
php7.4 /usr/bin/composer install --no-progress
54
export USE_ZEND_ALLOC=0
55
- sed -i 's/$exit = true/$exit = false/g' vendor/phpunit/phpunit/src/TextUI/Command.php
56
# Avoid test using exit(), which thus leaks.
57
# We can use USE_TRACKED_ALLOC=1 if more of these show up.
58
- sed -i "s/function_exists('pcntl_fork')/false/" tests/Filesystem/FilesystemTest.php
+ sed -i 's/$exit = true/$exit = false/g' vendor/phpunit/phpunit/src/TextUI/Command.php
+ # Hack to disable a test that hangs on azure
59
+ sed -i 's/PHP_OS/"Darwin"/' tests/Filesystem/FilesystemTest.php
60
php vendor/bin/phpunit
61
displayName: 'Test Laravel'
62
- script: |
0 commit comments