-
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.
TEMP changes for reproducing in SAT tests
- Loading branch information
1 parent
844ba63
commit 9cf4919
Showing
3 changed files
with
59 additions
and
2 deletions.
There are no files selected for viewing
4 changes: 2 additions & 2 deletions
4
airbyte-integrations/connectors/source-github/acceptance-test-docker.sh
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
38 changes: 38 additions & 0 deletions
38
airbyte-integrations/connectors/source-github/integration_tests/test_catalog.json
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,38 @@ | ||
{ | ||
"streams": [ | ||
{ | ||
"stream": { | ||
"name": "commit_comment_reactions", | ||
"json_schema": {}, | ||
"supported_sync_modes": ["full_refresh", "incremental"], | ||
"source_defined_primary_key": [["id"]] | ||
}, | ||
"sync_mode": "incremental", | ||
"destination_sync_mode": "overwrite" | ||
}, | ||
{ | ||
"stream": { | ||
"name": "commits", | ||
"json_schema": {}, | ||
"supported_sync_modes": [ | ||
"full_refresh", | ||
"incremental" | ||
], | ||
"source_defined_cursor": true, | ||
"default_cursor_field": [ | ||
"created_at" | ||
], | ||
"source_defined_primary_key": [ | ||
[ | ||
"sha" | ||
] | ||
] | ||
}, | ||
"sync_mode": "incremental", | ||
"destination_sync_mode": "append", | ||
"cursor_field": [ | ||
"created_at" | ||
] | ||
} | ||
] | ||
} |
19 changes: 19 additions & 0 deletions
19
airbyte-integrations/connectors/source-github/test-acceptance-test-config.yml
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,19 @@ | ||
connector_image: airbyte/source-github:dev | ||
tests: | ||
spec: | ||
- spec_path: "source_github/spec.json" | ||
connection: | ||
- config_path: "secrets/test_config.json" | ||
status: "succeed" | ||
- config_path: "integration_tests/invalid_config.json" | ||
status: "failed" | ||
discovery: | ||
- config_path: "secrets/test_config.json" | ||
basic_read: | ||
- config_path: "secrets/test_config.json" | ||
configured_catalog_path: "integration_tests/test_catalog.json" | ||
empty_streams: ["commit_comment_reactions"] | ||
|
||
full_refresh: | ||
- config_path: "secrets/test_config.json" | ||
configured_catalog_path: "integration_tests/test_catalog.json" |