Skip to content

Commit 0317fa6

Browse files
committed
dis
1 parent 1ca4c77 commit 0317fa6

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,9 @@ jobs:
139139

140140
- name: Run tests
141141
working-directory: build
142-
run: vendor/bin/phpunit || [ "${CI_TEST_IGNORE_FAILURE:-0}" -eq 1 ]
142+
run: |
143+
export SYMFONY_DEPRECATIONS_HELPER=disabled
144+
vendor/bin/phpunit || [ "${CI_TEST_IGNORE_FAILURE:-0}" -eq 1 ]
143145
env:
144146
BROWSERTEST_OUTPUT_DIRECTORY: /tmp
145147

phpunit.d10.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
explicitly.
5252
-->
5353
<!-- To disable deprecation testing completely uncomment the next line. -->
54-
<!-- <env name="SYMFONY_DEPRECATIONS_HELPER" value="disabled"/> -->
54+
<env name="SYMFONY_DEPRECATIONS_HELPER" value="disabled"/>
5555
<!-- Deprecation errors can be selectively ignored by specifying a file of
5656
regular expression patterns for exclusion.
5757
See https://symfony.com/doc/current/components/phpunit_bridge.html#ignoring-deprecations

0 commit comments

Comments
 (0)