Skip to content

Commit c7f5044

Browse files
minor #60926 skip transient tests in the CI (xabbuh)
This PR was merged into the 6.4 branch. Discussion ---------- skip transient tests in the CI | Q | A | ------------- | --- | Branch? | 6.4 | Bug fix? | no | New feature? | no | Deprecations? | no | Issues | related to #60417 | License | MIT Commits ------- 2fe70b2 skip transient tests in the CI
2 parents 5d0df9f + 2fe70b2 commit c7f5044

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
@@ -67,7 +67,7 @@ jobs:
6767
([ -d "$COMPOSER_HOME" ] || mkdir "$COMPOSER_HOME") && cp .github/composer-config.json "$COMPOSER_HOME/config.json"
6868
6969
echo COLUMNS=120 >> $GITHUB_ENV
70-
echo PHPUNIT="$(pwd)/phpunit --exclude-group tty,benchmark,intl-data,integration" >> $GITHUB_ENV
70+
echo PHPUNIT="$(pwd)/phpunit --exclude-group tty,benchmark,intl-data,integration,transient" >> $GITHUB_ENV
7171
echo COMPOSER_UP='composer update --no-progress --ansi'$([[ "${{ matrix.mode }}" != low-deps ]] && echo ' --ignore-platform-req=php+') >> $GITHUB_ENV
7272
7373
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)