1
0
mirror of synced 2026-02-01 04:01:50 -05:00
Files
airbyte/airbyte-integrations/connectors/source-gitlab/unit_tests/conftest.py
Cole Snodgrass 2e099acc52 update headers from 2022 -> 2023 (#22594)
* It's 2023!

* 2022 -> 2023

---------

Co-authored-by: evantahler <evan@airbyte.io>
2023-02-08 13:01:16 -08:00

18 lines
324 B
Python

#
# Copyright (c) 2023 Airbyte, Inc., all rights reserved.
#
import pytest
@pytest.fixture
def config(mocker):
return {
"start_date": "2021-01-01T00:00:00Z",
"api_url": "gitlab.com",
"credentials": {
"auth_type": "access_token",
"access_token": "token"
}
}