Fix failing aiopg tests (#317)

This commit is contained in:
alrex
2021-02-04 17:39:24 -08:00
committed by GitHub
parent b016f6f774
commit b53b9a012f
2 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,7 @@ on:
- 'release/*'
pull_request:
env:
CORE_REPO_SHA: 09b010cfcc85e2aa07326e9204541b80a7dd52f0
CORE_REPO_SHA: 48efb9737b037b7fb85ecafdf0f3dccd45d96af8
jobs:
build:

View File

@ -22,7 +22,7 @@ from opentelemetry import trace as trace_api
from opentelemetry.instrumentation.aiopg import AiopgInstrumentor
from opentelemetry.test.test_base import TestBase
POSTGRES_HOST = os.getenv("POSTGRESQL_HOST", "localhost")
POSTGRES_HOST = os.getenv("POSTGRESQL_HOST", "127.0.0.1")
POSTGRES_PORT = int(os.getenv("POSTGRESQL_PORT", "5432"))
POSTGRES_DB_NAME = os.getenv("POSTGRESQL_DB_NAME", "opentelemetry-tests")
POSTGRES_PASSWORD = os.getenv("POSTGRESQL_PASSWORD", "testpassword")