We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ad3ce5 commit dbcd28aCopy full SHA for dbcd28a
.github/workflows/integration-test-aura.yml
@@ -28,7 +28,7 @@ jobs:
28
php_version: 8.0
29
version: 2
30
- name: clean database
31
- run: echo $CONNECTION && CONNECTION=$CONNECTION php tests/clean-database.php
+ run: CONNECTION=$CONNECTION php tests/clean-database.php
32
- uses: php-actions/phpunit@v3
33
with:
34
configuration: phpunit.xml.dist
tests/clean-database.php
@@ -15,7 +15,7 @@
15
16
require __DIR__.'/../vendor/autoload.php';
17
18
-$connection = $_ENV['CONNECTION'] ?? 'neo4j://neo4j:testtest@localhost';
+$connection = $_SERVER['CONNECTION'] ?? 'neo4j://neo4j:testtest@localhost';
19
20
echo '================================================================================'.PHP_EOL;
21
echo 'CLEANING DATABASE neo4j OVER CONNECTION: ';
0 commit comments