1
0
mirror of synced 2026-01-09 06:03:17 -05:00
Files
airbyte/airbyte-integrations/connectors/source-google-sheets/unit_tests/conftest.py
Artem Inzhyyants 0eefa33bcb Source Google Sheets: handle config errors (#26097)
* Source Google Sheets: handle config errors

* Source Google Sheets: update docs

* Source Google Sheets: fix test

* Source Google Sheets: add unit tests

* auto-bump connector version

* Automated Change

---------

Co-authored-by: Octavia Squidington III <octavia-squidington-iii@users.noreply.github.com>
Co-authored-by: artem1205 <artem1205@users.noreply.github.com>
2023-05-17 00:14:26 +02:00

20 lines
433 B
Python

#
# Copyright (c) 2023 Airbyte, Inc., all rights reserved.
#
import pytest
@pytest.fixture
def invalid_config():
return {
"spreadsheet_id": "invalid_spreadsheet_id",
"credentials":
{
"auth_type": "Client",
"client_id": "fake_client_id",
"client_secret": "fake_client_secret",
"refresh_token": "fake_refresh_token"
}
}