Skip to content

Commit dce550a

Browse files
committed
actually put the dotenv file when it is needed
1 parent d4d7e3a commit dce550a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/integration-test-3.5.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,4 +39,4 @@ jobs:
3939
with:
4040
time: 60s
4141
- name: Run unit tests
42-
run: php vendor/bin/phpunit --testsuite Integration --bootstrap tests/bootstrap_override_with_dotenv.php
42+
run: echo NEO4J_CONNECTIONS=bolt://neo4j:test@localhost,neo4j://neo4j:test@localhost,http://neo4j:test@localhost >> .env && php vendor/bin/phpunit --testsuite Integration --bootstrap tests/bootstrap_override_with_dotenv.php

.github/workflows/integration-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,4 +46,4 @@ jobs:
4646
php_version: 7.4
4747
version: 2
4848
- name: Run unit tests
49-
run: php vendor/bin/phpunit --testsuite Integration --bootstrap tests/bootstrap_override_with_dotenv.php
49+
run: echo NEO4J_CONNECTIONS=bolt://neo4j:test@localhost,neo4j://neo4j:test@localhost,http://neo4j:test@localhost >> .env && php vendor/bin/phpunit --testsuite Integration --bootstrap tests/bootstrap_override_with_dotenv.php

0 commit comments

Comments
 (0)