Skip to content

Commit 8e9fc9b

Browse files
authored
Simplify env var config (#2210)
* Simplify env var config * Another try
1 parent c2329e4 commit 8e9fc9b

File tree

4 files changed

+1
-12
lines changed

4 files changed

+1
-12
lines changed

.circleci/config.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -164,9 +164,6 @@ jobs:
164164
behat-coverage:
165165
docker:
166166
- image: circleci/php:7.2-node-browsers
167-
environment:
168-
SYMFONY_DEPRECATIONS_HELPER: weak_vendors
169-
APP_ENV: test
170167
parallelism: 2
171168
working_directory: ~/api-platform/core
172169
steps:

.travis.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,6 @@ cache:
66
- $HOME/.composer/cache
77
- $HOME/.npm
88

9-
env:
10-
global:
11-
- SYMFONY_DEPRECATIONS_HELPER=weak_vendors
12-
- APP_ENV=test
13-
149
jobs:
1510
include:
1611
- php: '7.1'

appveyor.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,6 @@ clone_folder: c:\projects\api-platform\core
55
cache:
66
- '%LOCALAPPDATA%\Composer\files'
77

8-
environment:
9-
SYMFONY_DEPRECATIONS_HELPER: weak_vendors
10-
APP_ENV: test
11-
128
install:
139
- ps: Set-Service wuauserv -StartupType Manual
1410
- cinst -y php composer

phpunit.xml.dist

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
<php>
1111
<ini name="error_reporting" value="-1" />
1212
<ini name="memory_limit" value="-1" />
13+
<env name="SYMFONY_DEPRECATIONS_HELPER" value="weak_vendors" />
1314
<server name="KERNEL_DIR" value="tests/Fixtures/app/" />
1415
<server name="KERNEL_CLASS" value="AppKernel" />
1516
<server name="APP_ENV" value="test" />

0 commit comments

Comments
 (0)