* extend template for the Java JDBC template by SAT SPEC * extend example source scaffold-java-jdbc * review upd * add other SAT tests to the template * review upd * comment non-spec tests * Revert "comment non-spec tests" This reverts commit8c78049fd9. * Revert "add other SAT tests to the template" This reverts commitc15b4dcd87. * review * review * typo * typo * new line
17 lines
432 B
Python
17 lines
432 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."""
|
|
# TODO: setup test dependencies if needed. otherwise remove the TODO comments
|
|
yield
|
|
# TODO: clean up test dependencies
|