File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 1
- name : Unit and Integration Tests
1
+ name : Integration Tests
2
2
3
3
on :
4
4
push :
11
11
runs-on : ubuntu-latest
12
12
env :
13
13
NEO4J_CONNECTIONS : bolt://neo4j:test@localhost,http://neo4j:test@localhost
14
- name : " Running test for PHP ${{ matrix.php-version }} on Neo4j ${{ matrix.neo4j-version }} with simple config"
14
+ name : " Running Integration tests for PHP ${{ matrix.php-version }} on Neo4j ${{ matrix.neo4j-version }} with simple config"
15
15
strategy :
16
16
fail-fast : false
17
17
matrix :
44
44
php_extensions : bcmath
45
45
memory_limit : 1024M
46
46
bootstrap : vendor/autoload.php
47
+ args : --testsuite "Integration"
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ private function getBoltUri(): UriInterface
47
47
*/
48
48
public function testValidHostname (): void
49
49
{
50
- $ results = BoltDriver::create (' bolt://neo4j:test@neo4j ' )->createSession ()->run (<<<'CYPHER'
50
+ $ results = BoltDriver::create ($ this -> uri -> __toString () )->createSession ()->run (<<<'CYPHER'
51
51
RETURN 1 AS x
52
52
CYPHER);
53
53
self ::assertEquals (1 , $ results ->first ()->get ('x ' ));
You can’t perform that action at this time.
0 commit comments