Skip to content

Commit

Permalink
FIX - CI/CD
Browse files Browse the repository at this point in the history
  • Loading branch information
BadPixxel committed Dec 19, 2023
1 parent df8914d commit 9dbecbb
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ services:
- './docker/toolkit/tests:/app/tests:ro'
# Specify Local Configuration File
# - './docker/toolkit/splash.yml:/app/config/packages/splash.yml:ro'
- './docker/toolkit/splash-dev.yml:/app/config/packages/splash.yml:ro'
- './docker/toolkit/splash-dev.yml:/app/config/packages/splash.yaml:ro'
- './docker/toolkit/phpunit.products.xml:/app/phpunit.products.xml:ro'
- './docker/toolkit/phpunit.contacts.xml:/app/phpunit.contacts.xml:ro'
- './docker/toolkit/phpunit.invoices.xml:/app/phpunit.invoices.xml:ro'
Expand Down
4 changes: 2 additions & 2 deletions docker/toolkit/phpunit.invoices.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
convertWarningsToExceptions = "true"
processIsolation = "false"
stopOnFailure = "true"
bootstrap = "config/bootstrap.php"
bootstrap = "vendor/autoload_runtime.php"
verbose = "true"
timeoutForLargeTests = "10"
>
Expand All @@ -33,7 +33,7 @@
</filter>

<php>
<server name="KERNEL_CLASS" value="App\Kernel" />
<server name="KERNEL_CLASS" value="Splash\Toolkit\Kernel" />
<env name="SYMFONY_DEPRECATION_HELPER" value="disabled" />
<server name="SERVER_NAME" value="http://localhost:8000"/>
<const name="SPLASH_DEBUG" value="true" />
Expand Down
4 changes: 2 additions & 2 deletions docker/toolkit/phpunit.orders.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
convertWarningsToExceptions = "true"
processIsolation = "false"
stopOnFailure = "true"
bootstrap = "config/bootstrap.php"
bootstrap = "vendor/autoload_runtime.php"
verbose = "true"
timeoutForLargeTests = "10"
>
Expand All @@ -33,7 +33,7 @@
</filter>

<php>
<server name="KERNEL_CLASS" value="App\Kernel" />
<server name="KERNEL_CLASS" value="Splash\Toolkit\Kernel" />
<env name="SYMFONY_DEPRECATION_HELPER" value="disabled" />
<server name="SERVER_NAME" value="http://localhost:8000"/>
<const name="SPLASH_DEBUG" value="true" />
Expand Down
4 changes: 2 additions & 2 deletions docker/toolkit/phpunit.products.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
convertWarningsToExceptions = "true"
processIsolation = "false"
stopOnFailure = "true"
bootstrap = "config/bootstrap.php"
bootstrap = "vendor/autoload_runtime.php"
verbose = "true"
timeoutForLargeTests = "10"
>
Expand All @@ -31,7 +31,7 @@
</filter>

<php>
<server name="KERNEL_CLASS" value="App\Kernel" />
<server name="KERNEL_CLASS" value="Splash\Toolkit\Kernel" />
<env name="SYMFONY_DEPRECATION_HELPER" value="disabled" />
<server name="SERVER_NAME" value="http://localhost:8000"/>
<const name="SPLASH_DEBUG" value="true" />
Expand Down

0 comments on commit 9dbecbb

Please sign in to comment.