Skip to content

Commit 71f7f2d

Browse files
authored
Merge branch 'main' into lazebnyi/fix-dynamic-stream-read-with-dynamic-schema
2 parents a2dfe6b + 7a81b3b commit 71f7f2d

File tree

51 files changed

+3988
-489
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+3988
-489
lines changed

.github/workflows/connector-tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ concurrency:
2525
jobs:
2626
cdk_changes:
2727
name: Get Changes
28-
runs-on: ubuntu-22.04
28+
runs-on: ubuntu-24.04
2929
permissions:
3030
statuses: write
3131
pull-requests: read
@@ -62,7 +62,7 @@ jobs:
6262
# Forked PRs are handled by the community_ci.yml workflow
6363
# If the condition is not met the job will be skipped (it will not fail)
6464
# runs-on: connector-test-large
65-
runs-on: ubuntu-22.04
65+
runs-on: ubuntu-24.04
6666
timeout-minutes: 360 # 6 hours
6767
strategy:
6868
fail-fast: false
@@ -153,7 +153,7 @@ jobs:
153153
POETRY_DYNAMIC_VERSIONING_BYPASS: "0.0.0"
154154
run: |
155155
cd airbyte
156-
make tools.airbyte-ci-dev.install
156+
make tools.airbyte-ci.install
157157
airbyte-ci \
158158
--ci-report-bucket-name=airbyte-ci-reports-multi \
159159
connectors \

airbyte_cdk/cli/airbyte_cdk/_connector.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363

6464
TEST_FILE_TEMPLATE = '''
6565
# Copyright (c) 2025 Airbyte, Inc., all rights reserved.
66-
"""FAST Airbyte Standard Tests for the source_pokeapi_w_components source."""
66+
"""FAST Airbyte Standard Tests for the {connector_name} source."""
6767
6868
#from airbyte_cdk.test.standard_tests import {base_class_name}
6969
from airbyte_cdk.test.standard_tests.util import create_connector_test_suite
@@ -78,7 +78,7 @@
7878
)
7979
8080
# class TestSuite({base_class_name}):
81-
# """Test suite for the source_pokeapi_w_components source.
81+
# """Test suite for the {connector_name} source.
8282
8383
# This class inherits from SourceTestSuiteBase and implements all of the tests in the suite.
8484
@@ -152,7 +152,7 @@ def test(
152152

153153
file_text = TEST_FILE_TEMPLATE.format(
154154
base_class_name=connector_test_suite.__bases__[0].__name__,
155-
connector_directory=str(connector_directory),
155+
connector_name=connector_name,
156156
)
157157
test_file_path = Path() / ".tmp" / "integration_tests/test_airbyte_standards.py"
158158
test_file_path = test_file_path.resolve().absolute()

0 commit comments

Comments
 (0)