-
Notifications
You must be signed in to change notification settings - Fork 4.6k
✨Source Pivotal-Tracker: Migrate Python CDK to Low-code CDK #36953
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 15 commits
Commits
Show all changes
39 commits
Select commit
Hold shift + click to select a range
a27e5ca
feat: Migrate to low code CDK
btkcodedev faff642
Merge branch 'master' into feat/pivotalTrackerLowCode
btkcodedev d285d8e
Retrieve icon, update docs
btkcodedev aacd66b
Merge branch 'feat/pivotalTrackerLowCode' of https://github.com/btkco…
btkcodedev 2db656a
update version, delete spec.yaml
btkcodedev 0bcf6ab
feat: custom paginator
btkcodedev b1ce1d4
Merge branch 'master' into feat/pivotalTrackerLowCode
girarda d10ada5
Update airbyte-integrations/connectors/source-pivotal-tracker/metadat…
girarda 65c1af7
Add poetrylock and migrations.md
btkcodedev f18532b
Merge branch 'feat/pivotalTrackerLowCode' of https://github.com/btkco…
btkcodedev 3416a17
Merge branch 'master' into feat/pivotalTrackerLowCode
btkcodedev 63b2bf7
Merge branch 'master' into feat/pivotalTrackerLowCode
btkcodedev 0341894
Move schema inline, update version, update poetry lock
btkcodedev 23aa645
Merge remote-tracking branch 'fork/feat/pivotalTrackerLowCode' into b…
btkcodedev 5c24baf
chore: format
btkcodedev 925893a
resolve comments: EOF, Schema fix, Update manifest via builder, updat…
btkcodedev 219cbe8
Merge branch 'master' into btkcodedev/pivotalTrackerLowCode
btkcodedev 667d241
Merge branch 'btkcodedev/pivotalTrackerLowCode' of https://github.com…
btkcodedev afb49b9
resolve comments: retrieve unit tests, fix pagination, remove unwante…
btkcodedev e133410
chore: format, add conftest
btkcodedev 6e188a4
fix: add additional requirements
btkcodedev 4005604
chore: delete unwanted files
btkcodedev 538bd94
chore: delete unwanted files
btkcodedev ac77668
fix: schemas
btkcodedev 73c5c17
Merge branch 'btkcodedev/pivotalTrackerLowCode' of https://github.com…
btkcodedev 4cefce4
Add unit tests, fix spec, delete unwanted file
btkcodedev 287567c
chore: format
btkcodedev ebd4b4f
Merge branch 'master' into btkcodedev/pivotalTrackerLowCode
btkcodedev 9fcd6f0
revert deleted schema
btkcodedev 49aad50
Merge branch 'master' into btkcodedev/pivotalTrackerLowCode
btkcodedev e7a9aab
fix: unit test
btkcodedev c7af519
chore: format
btkcodedev 8e6663c
Merge branch 'master' into btkcodedev/pivotalTrackerLowCode
btkcodedev cfa8118
draft: CustomPagination
btkcodedev 51439f7
feat: Add support for pagination in stories and releases stream
btkcodedev 7409a9e
Merge branch 'master' into btkcodedev/pivotalTrackerLowCode
btkcodedev 616912d
Merge branch 'master' into btkcodedev/pivotalTrackerLowCode
btkcodedev 3328092
Merge branch 'btkcodedev/pivotalTrackerLowCode' of https://github.com…
btkcodedev 6b4cbe1
Merge branch 'master' into btkcodedev/pivotalTrackerLowCode
lazebnyi File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
6 changes: 0 additions & 6 deletions
6
airbyte-integrations/connectors/source-pivotal-tracker/.dockerignore
This file was deleted.
Oops, something went wrong.
38 changes: 0 additions & 38 deletions
38
airbyte-integrations/connectors/source-pivotal-tracker/Dockerfile
This file was deleted.
Oops, something went wrong.
This file contains hidden or 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
3 changes: 3 additions & 0 deletions
3
airbyte-integrations/connectors/source-pivotal-tracker/__init__.py
This file contains hidden or 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,3 @@ | ||
# | ||
# Copyright (c) 2023 Airbyte, Inc., all rights reserved. | ||
# |
41 changes: 29 additions & 12 deletions
41
airbyte-integrations/connectors/source-pivotal-tracker/acceptance-test-config.yml
This file contains hidden or 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 |
---|---|---|
@@ -1,20 +1,37 @@ | ||
# See [Connector Acceptance Tests](https://docs.airbyte.com/connector-development/testing-connectors/connector-acceptance-tests-reference) | ||
# for more information about how to configure these tests | ||
connector_image: airbyte/source-pivotal-tracker:dev | ||
tests: | ||
acceptance_tests: | ||
spec: | ||
- spec_path: "source_pivotal_tracker/spec.json" | ||
tests: | ||
- spec_path: "source_pivotal_tracker/spec.yaml" | ||
connection: | ||
- config_path: "secrets/config.json" | ||
status: "succeed" | ||
- config_path: "integration_tests/invalid_config.json" | ||
status: "failed" | ||
tests: | ||
- config_path: "secrets/config.json" | ||
status: "succeed" | ||
- config_path: "integration_tests/invalid_config.json" | ||
status: "failed" | ||
discovery: | ||
- config_path: "secrets/config.json" | ||
tests: | ||
- config_path: "secrets/config.json" | ||
basic_read: | ||
- config_path: "secrets/config.json" | ||
configured_catalog_path: "integration_tests/configured_catalog.json" | ||
empty_streams: [] | ||
tests: | ||
- config_path: "secrets/config.json" | ||
configured_catalog_path: "integration_tests/configured_catalog.json" | ||
empty_streams: [] | ||
# TODO uncomment this block to specify that the tests should assert the connector outputs the records provided in the input file a file | ||
askarpets marked this conversation as resolved.
Show resolved
Hide resolved
|
||
# expect_records: | ||
# path: "integration_tests/expected_records.jsonl" | ||
# exact_order: no | ||
incremental: | ||
bypass_reason: "This connector does not implement incremental sync" | ||
# TODO uncomment this block this block if your connector implements incremental sync: | ||
askarpets marked this conversation as resolved.
Show resolved
Hide resolved
|
||
# tests: | ||
# - config_path: "secrets/config.json" | ||
# configured_catalog_path: "integration_tests/configured_catalog.json" | ||
# future_state: | ||
# future_state_path: "integration_tests/abnormal_state.json" | ||
full_refresh: | ||
- config_path: "secrets/config.json" | ||
configured_catalog_path: "integration_tests/configured_catalog.json" | ||
tests: | ||
- config_path: "secrets/config.json" | ||
configured_catalog_path: "integration_tests/configured_catalog.json" |
2 changes: 1 addition & 1 deletion
2
airbyte-integrations/connectors/source-pivotal-tracker/integration_tests/__init__.py
This file contains hidden or 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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
# | ||
# Copyright (c) 2021 Airbyte, Inc., all rights reserved. | ||
# Copyright (c) 2023 Airbyte, Inc., all rights reserved. | ||
# |
5 changes: 5 additions & 0 deletions
5
airbyte-integrations/connectors/source-pivotal-tracker/integration_tests/abnormal_state.json
This file contains hidden or 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,5 @@ | ||
{ | ||
"todo-stream-name": { | ||
askarpets marked this conversation as resolved.
Show resolved
Hide resolved
|
||
"todo-field-name": "todo-abnormal-value" | ||
} | ||
} |
This file contains hidden or 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.