Skip to content

Commit 36262c3

Browse files
[Maintenance] Remove the need for certs in tests (#417)
| Q | A | --------------- | ----- | Branch? | 2.0 | Bug fix? | kinda | New feature? | no | Related tickets | -
2 parents c176ada + 883ff19 commit 36262c3

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/build.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -102,10 +102,6 @@ jobs:
102102
name: Output PHP version for Symfony CLI
103103
run: php -v | head -n 1 | awk '{ print $2 }' > .php-version
104104

105-
-
106-
name: Install certificates
107-
run: symfony server:ca:install
108-
109105
-
110106
name: Get Composer cache directory
111107
id: composer-cache
@@ -187,9 +183,13 @@ jobs:
187183
vendor/bin/console doctrine:database:create -vvv
188184
vendor/bin/console doctrine:migrations:migrate -n -vvv -q
189185
186+
-
187+
name: Setup messenger transports
188+
run: vendor/bin/console messenger:setup-transports -vvv
189+
190190
-
191191
name: Validate database schema
192-
run: vendor/bin/console doctrine:schema:validate
192+
run: vendor/bin/console doctrine:schema:validate -vvv
193193

194194
-
195195
name: Prepare test application assets

behat.yml.dist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ default:
1313

1414
Behat\MinkExtension:
1515
files_path: "%paths.base%/vendor/sylius/sylius/src/Sylius/Behat/Resources/fixtures/"
16-
base_url: "https://127.0.0.1:8080/"
16+
base_url: "http://127.0.0.1:8080/"
1717
default_session: symfony
1818
javascript_session: chrome
1919
sessions:

0 commit comments

Comments
 (0)