Skip to content

Commit 7904dff

Browse files
committed
added .env file with credentials before integration tests
1 parent 194024e commit 7904dff

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
42+
run: echo "NEO4J_CONNECTIONS=bolt://neo4j:test@localhost,neo4j://neo4j:test@localhost,http://neo4j:test@localhost" >> .env && php vendor/bin/phpunit --testsuite Integration

.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
49+
run: echo "NEO4J_CONNECTIONS=bolt://neo4j:test@localhost,neo4j://neo4j:test@localhost,http://neo4j:test@localhost" >> .env && php vendor/bin/phpunit --testsuite Integration

0 commit comments

Comments
 (0)