Skip to content

Commit 7931a19

Browse files
Merge branch '7.2' into 7.3
* 7.2: skip transient tests in the CI
2 parents ba6b2ff + a44d410 commit 7931a19

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

.github/workflows/unit-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ jobs:
7373
([ -d "$COMPOSER_HOME" ] || mkdir "$COMPOSER_HOME") && cp .github/composer-config.json "$COMPOSER_HOME/config.json"
7474
7575
echo COLUMNS=120 >> $GITHUB_ENV
76-
echo PHPUNIT="$(pwd)/phpunit --exclude-group tty,benchmark,intl-data,integration" >> $GITHUB_ENV
76+
echo PHPUNIT="$(pwd)/phpunit --exclude-group tty,benchmark,intl-data,integration,transient" >> $GITHUB_ENV
7777
echo COMPOSER_UP='composer update --no-progress --ansi'$([[ "${{ matrix.mode }}" != low-deps ]] && echo ' --ignore-platform-req=php+') >> $GITHUB_ENV
7878
7979
SYMFONY_VERSIONS=$(git ls-remote -q --heads | cut -f2 | grep -o '/[1-9][0-9]*\.[0-9].*' | sort -V)

src/Symfony/Component/HttpClient/Tests/AmpHttpClientTest.php

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,14 @@
1919
*/
2020
class AmpHttpClientTest extends HttpClientTestCase
2121
{
22+
/**
23+
* @group transient
24+
*/
25+
public function testNonBlockingStream()
26+
{
27+
parent::testNonBlockingStream();
28+
}
29+
2230
protected function getHttpClient(string $testCase): HttpClientInterface
2331
{
2432
return new AmpHttpClient(['verify_peer' => false, 'verify_host' => false, 'timeout' => 5]);

0 commit comments

Comments
 (0)