Skip to content

Commit

Permalink
SUPPORT-86535 - muted deprecation warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
Yuri Gaidoba committed Nov 20, 2023
1 parent 9116a57 commit 457160c
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ jobs:
{ php-version: '7.3', symfony-version: '4.4.*', dependency-versions: 'latest' },
{ php-version: '7.4', symfony-version: '4.4.*', dependency-versions: 'lowest' },
{ php-version: '7.4', symfony-version: '4.4.*', dependency-versions: 'latest' },
# {php-version: '8.0', symfony-version: '4.4.*', dependency-versions: 'lowest'},
{php-version: '8.0', symfony-version: '4.4.*', dependency-versions: 'lowest'},
{php-version: '8.0', symfony-version: '4.4.*', dependency-versions: 'latest'},
# {php-version: '8.1', symfony-version: '4.4.*', dependency-versions: 'lowest'},
{php-version: '8.1', symfony-version: '4.4.*', dependency-versions: 'lowest'},
{php-version: '8.1', symfony-version: '4.4.*', dependency-versions: 'latest'},
{ php-version: '7.2', symfony-version: '5.4.*', dependency-versions: 'lowest' },
{ php-version: '7.2', symfony-version: '5.4.*', dependency-versions: 'latest' },
Expand Down
2 changes: 1 addition & 1 deletion phpunit.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
convertWarningsToExceptions = "true"
processIsolation = "false"
stopOnFailure = "false"
bootstrap = "vendor/autoload.php" >
bootstrap = "tests/bootstrap.php" >

<testsuites>
<testsuite name="Project Test Suite">
Expand Down
7 changes: 7 additions & 0 deletions tests/bootstrap.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<?php

declare(strict_types=1);

error_reporting(E_ALL & ~E_DEPRECATED & ~E_USER_DEPRECATED);

require 'vendor/autoload.php';

0 comments on commit 457160c

Please sign in to comment.