Skip to content

Commit

Permalink
TEMP changes for reproducing in SAT tests
Browse files Browse the repository at this point in the history
  • Loading branch information
erohmensing committed Jan 9, 2023
1 parent 844ba63 commit 9cf4919
Show file tree
Hide file tree
Showing 3 changed files with 59 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env sh

# Build latest connector image
docker build . -t $(cat acceptance-test-config.yml | grep "connector_image" | head -n 1 | cut -d: -f2)
## Build latest connector image
#docker build . -t $(cat acceptance-test-config.yml | grep "connector_image" | head -n 1 | cut -d: -f2)

# Pull latest acctest image
docker pull airbyte/source-acceptance-test:latest
Expand Down
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"
]
}
]
}
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"

0 comments on commit 9cf4919

Please sign in to comment.