We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents eb721ac + 9c23fb2 commit 96653ffCopy full SHA for 96653ff
tests/integration/conftest.py
@@ -51,8 +51,7 @@ def graphql_url(environ: str) -> str:
51
hostname = os.environ.get('LABELBOX_TEST_ONPREM_HOSTNAME', None)
52
if hostname is None:
53
raise Exception(f"Missing LABELBOX_TEST_ONPREM_INSTANCE")
54
- instance_id = hostname.split("-")[1].split(".")[0]
55
- return f"https://app.replicated-{instance_id}.labelbox.dev/api/_gql"
+ return f"{hostname}/api/_gql"
56
return 'http://host.docker.internal:8080/graphql'
57
58
0 commit comments