From 0c97f434b8fdb671621a70a48dbdb845124d1dfd Mon Sep 17 00:00:00 2001 From: Jeremy Cohen Date: Thu, 2 Jun 2022 11:48:47 +0200 Subject: [PATCH] Revert bq target changes --- tests/conftest.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/conftest.py b/tests/conftest.py index 282bcb08..e7d9d198 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -62,7 +62,9 @@ def redshift_target(): def bigquery_target(): return { "type": "bigquery", - "method": "oauth" + "method": "service-account", + "keyfile": os.getenv('BIGQUERY_SERVICE_KEY_PATH'), + "project": os.getenv('BIGQUERY_TEST_DATABASE'), }