Skip to content

Commit

Permalink
tests: rm unneeded test container
Browse files Browse the repository at this point in the history
  • Loading branch information
majensen committed Oct 14, 2024
1 parent 275fa73 commit 5747dd3
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 19 deletions.
13 changes: 0 additions & 13 deletions python/tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,20 +32,7 @@ def bento_neo4j(docker_services, docker_ip):
)
return (bolt_url, http_url)


@pytest.fixture(scope="session")
def plain_neo4j(docker_services, docker_ip):
bolt_port = docker_services.port_for("plain-neo4j", 7687)
http_port = docker_services.port_for("plain-neo4j", 7474)
bolt_url = "bolt://{}:{}".format(docker_ip, bolt_port)
http_url = "http://{}:{}".format(docker_ip, http_port)
sleep(wait)
docker_services.wait_until_responsive(
timeout=30.0, pause=0.5, check=lambda: is_responsive(http_url)
)
return (bolt_url, http_url)


@pytest.fixture(scope="session")
def mdb(docker_services, docker_ip):
bolt_port = docker_services.port_for("mdb", 7687)
Expand Down
6 changes: 0 additions & 6 deletions python/tests/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,6 @@ services:
- "7474"
- "7473"
- "7687"
plain-neo4j:
image: 'maj1/test-plain-db-bento-meta'
ports:
- "7474"
- "7473"
- "7687"
mdb:
image: 'maj1/mdb:3.5'
ports:
Expand Down

0 comments on commit 5747dd3

Please sign in to comment.