Skip to content
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

Source Sentry: enable SAT high strictness #21459

Merged
merged 2 commits into from
Jan 18, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,33 +1,34 @@
connector_image: airbyte/source-sentry:dev
acceptance_tests:
spec:
basic_read:
tests:
- spec_path: "source_sentry/spec.json"
- config_path: secrets/config.json
timeout_seconds: 1200
expect_records:
path: "integration_tests/expected_records.jsonl"
extra_fields: no
exact_order: no
extra_records: yes
connection:
tests:
- config_path: "secrets/config.json"
status: "succeed"
- config_path: "integration_tests/invalid_config.json"
status: "failed"
- config_path: secrets/config.json
status: succeed
- config_path: integration_tests/invalid_config.json
status: failed
discovery:
tests:
- config_path: "secrets/config.json"
basic_read:
- config_path: secrets/config.json
full_refresh:
tests:
- config_path: "secrets/config.json"
configured_catalog_path: "integration_tests/configured_catalog.json"
empty_streams:
- name: issues
bypass_reason: "unable to populate"
- name: events
bypass_reason: "unable to populate"
- config_path: secrets/config.json
configured_catalog_path: integration_tests/configured_catalog.json
incremental:
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
future_state:
future_state_path: integration_tests/abnormal_state.json
spec:
tests:
- config_path: "secrets/config.json"
configured_catalog_path: "integration_tests/configured_catalog.json"
- spec_path: source_sentry/spec.json
connector_image: airbyte/source-sentry:dev
test_strictness_level: high
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,27 @@
"name": "projects"
}
}
},
{
"type": "STREAM",
"stream": {
"stream_state": {
"lastSeen": "2100-01-01T00:00:00.0Z"
},
"stream_descriptor": {
"name": "issues"
}
}
},
{
"type": "STREAM",
"stream": {
"stream_state": {
"dateCreated": "2100-01-01T00:00:00.0Z"
},
"stream_descriptor": {
"name": "events"
}
}
}
]
Loading