* 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>
20 lines
433 B
Python
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"
|
|
}
|
|
}
|