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
22
33on :
44 push :
1111 runs-on : ubuntu-latest
1212 env :
1313 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"
1515 strategy :
1616 fail-fast : false
1717 matrix :
4444 php_extensions : bcmath
4545 memory_limit : 1024M
4646 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
4747 */
4848 public function testValidHostname (): void
4949 {
50- $ results = BoltDriver::create (' bolt://neo4j:test@neo4j ' )->createSession ()->run (<<<'CYPHER'
50+ $ results = BoltDriver::create ($ this -> uri -> __toString () )->createSession ()->run (<<<'CYPHER'
5151RETURN 1 AS x
5252CYPHER);
5353 self ::assertEquals (1 , $ results ->first ()->get ('x ' ));
You can’t perform that action at this time.
0 commit comments