Hello, I'm running some tests with pytest and am getting this error for a couple of the tests:
INFO neo4ju:_driver.py:187 Opened database connection.
ERROR neo4j:init.py:1212 Unable to retrieve routing information
WARNING neo4ju:_driver.py:549 Running query against fallback database neo4j
.
ERROR neo4j:init.py:1212 Unable to retrieve routing information
ERROR neo4ju:_driver.py:564 Failed to run query: ServiceUnavailable: Unable to retrieve routing information
SKIPPED (Neo4j is offline: Unable to retrieve routing information)
this is a sample of the code:
def test_connect_to_db(driver):
assert isinstance(driver._driver.driver, neo4j.Neo4jDriver)
I've tried specifying the database name, and parsing the neo4j://localhost:7687/<database_name>, along with the username and password, but I get the same error.