11 lines
258 B
Python
11 lines
258 B
Python
#
|
|
# Copyright (c) 2023 Airbyte, Inc., all rights reserved.
|
|
#
|
|
|
|
import pytest
|
|
|
|
|
|
@pytest.fixture(scope="session", name="config")
|
|
def config_fixture():
|
|
return {"api_token": "test_api_key", "domain_name": "example.atlassian.net", "email": "test@example.com"}
|