* Add cach for project stream * Updated PR number * Updated test credential * Updated docs * Increased unittest coverage * Added timout to acceptance test * auto-bump connector version [ci skip] Co-authored-by: Octavia Squidington III <octavia-squidington-iii@users.noreply.github.com>
15 lines
311 B
Python
15 lines
311 B
Python
#
|
|
# Copyright (c) 2022 Airbyte, Inc., all rights reserved.
|
|
#
|
|
|
|
|
|
import pytest
|
|
|
|
pytest_plugins = ("source_acceptance_test.plugin",)
|
|
|
|
|
|
@pytest.fixture(scope="session", autouse=True)
|
|
def connector_setup():
|
|
"""This fixture is a placeholder for external resources that acceptance test might require."""
|
|
yield
|