* initial commit * fix schema * fix schema * ass tasks stream * update schema * fix sample config * add time records * add docs * update docs * Update source_definitions.yaml * Update source_definitions.yaml * Update spec.yaml * update low-code to latest format * auto-bump connector version --------- Co-authored-by: marcosmarxm <marcosmarxm@gmail.com> Co-authored-by: Marcos Marx <marcosmarxm@users.noreply.github.com> Co-authored-by: Octavia Squidington III <octavia-squidington-iii@users.noreply.github.com>
17 lines
435 B
Python
17 lines
435 B
Python
#
|
|
# Copyright (c) 2023 Airbyte, Inc., all rights reserved.
|
|
#
|
|
|
|
|
|
import pytest
|
|
|
|
pytest_plugins = ("connector_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."""
|
|
# TODO: setup test dependencies if needed. otherwise remove the TODO comments
|
|
yield
|
|
# TODO: clean up test dependencies
|