-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
airbyte-lib: Lightweight validation (#34475)
- Loading branch information
Joe Reuter
authored
Jan 26, 2024
1 parent
a5fc287
commit 3f2ede5
Showing
7 changed files
with
73 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 13 additions & 0 deletions
13
airbyte-lib/tests/integration_tests/fixtures/source-broken/metadata.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
data: | ||
connectorSubtype: api | ||
connectorType: source | ||
definitionId: 47f17145-fe20-4ef5-a548-e29b048adf84 | ||
dockerImageTag: 0.0.0 | ||
dockerRepository: airbyte/source-broken | ||
githubIssueLabel: source-broken | ||
name: Test | ||
releaseDate: 2023-08-25 | ||
releaseStage: alpha | ||
supportLevel: community | ||
documentationUrl: https://docs.airbyte.com/integrations/sources/apify-dataset | ||
metadataSpecVersion: "1.0" |
20 changes: 20 additions & 0 deletions
20
airbyte-lib/tests/integration_tests/fixtures/source-broken/setup.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# | ||
# Copyright (c) 2023 Airbyte, Inc., all rights reserved. | ||
# | ||
|
||
|
||
from setuptools import find_packages, setup | ||
|
||
setup( | ||
name="source_broken", | ||
version="0.0.1", | ||
description="Test Soutce", | ||
author="Airbyte", | ||
author_email="contact@airbyte.io", | ||
packages=find_packages(), | ||
entry_points={ | ||
"console_scripts": [ | ||
"source-broken=source_broken.run:run", | ||
], | ||
}, | ||
) |
4 changes: 4 additions & 0 deletions
4
airbyte-lib/tests/integration_tests/fixtures/source-broken/source_broken/run.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# Copyright (c) 2023 Airbyte, Inc., all rights reserved. | ||
|
||
def run(): | ||
raise Exception("Could not run") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters