Skip to content
This repository was archived by the owner on Jun 28, 2024. It is now read-only.

Commit e6d1365

Browse files
authored
fix: Merge pull request #44 from seamapi/fix-docker-reference
fix: Correct reference to Docker container
2 parents b4be008 + e8648de commit e6d1365

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ def seam_backend():
2929
with PostgresContainer("postgres:13", dbname="postgres") as pg:
3030
db_host = "host.docker.internal" if sys.platform == "darwin" else "172.17.0.1"
3131
db_url = f"postgresql://test:test@{db_host}:{pg.get_exposed_port(pg.port_to_expose)}/postgres"
32-
with DockerContainer("seamapi/seam-connect").with_env(
32+
with DockerContainer("ghcr.io/seamapi/seam-connect").with_env(
3333
"DATABASE_URL",
3434
db_url,
3535
).with_env("POSTGRES_DATABASE", "postgres").with_env(

0 commit comments

Comments
 (0)