Skip to content

🐛 Source PayPal Transactions: update manifest.yaml to use the latest CDK version to fix the STATE for Incremental streams #37435

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
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
Expand Up @@ -39,7 +39,7 @@ See `sample_files/sample_config.json` for a sample config file.
poetry run source-paypal-transaction spec
poetry run source-paypal-transaction check --config secrets/config.json
poetry run source-paypal-transaction discover --config secrets/config.json
#Example with list_payments catalog and the debug flag
# Example with list_payments catalog and the debug flag
poetry run source-paypal-transaction read --config secrets/config.json --catalog integration_tests/configured_catalog_list_payments.json --debug
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,62 +7,50 @@ test_strictness_level: high
acceptance_tests:
spec:
tests:
#Test with Prod credentials (Make sure you purt the right ones)
# Test with Prod credentials (Make sure you purt the right ones)
- spec_path: "source_paypal_transaction/spec.yaml"
config_path: secrets/config.json
backward_compatibility_tests_config:
disable_for_version: "0.1.13"
connection:
tests:
#Test With Prod Credentials
# Test With Prod Credentials
- config_path: secrets/config.json
status: succeed
#Test with Invalid Credentials
# Test with Invalid Credentials
- config_path: integration_tests/sample_files/invalid_config.json
status: failed
#Test with Sandbox Credentials
# - config_path: secrets/config_sandbox.json
# status: succeed
discovery:
tests:
- config_path: secrets/config.json
# - config_path: secrets/config_sandbox.json
backward_compatibility_tests_config:
disable_for_version: "2.0.0" # Change in cursor field for transactions stream
basic_read:
tests:
#Test Prod Environment - Uncomment and change according to your prod setup
#Change the expected records, remember to align them with the timeframe you have selected
#Do not select streams that take more than 5 mins to load data as that can lead to timeouts
#You can comment the lines if you are sure you have data for the below streams.
# Test Prod Environment - Uncomment and change according to your prod setup
# Change the expected records, remember to align them with the timeframe you have selected
# Do not select streams that take more than 5 mins to load data as that can lead to timeouts
# You can comment the lines if you are sure you have data for the below streams.
- config_path: secrets/config.json
# - config_path: secrets/config_sandbox.json
empty_streams:
- name: show_product_details
bypass_reason: "Products may not exist"
- name: search_invoices
bypass_reason: "Order makes the diff fail."
#Have to add for testing PR CI.
# Have to add for testing PR CI.
- name: list_disputes
bypass_reason: "Disputes may not exist."
timeout_seconds: 3200
expect_records:
path: "integration_tests/sample_files/expected_records_sandbox.jsonl"
#path: "integration_tests/sample_files/expected_records.jsonl"
exact_order: yes
fail_on_extra_columns: False
incremental:
tests:
- config_path: secrets/config.json
# - config_path: secrets/config_sandbox.json
configured_catalog_path: integration_tests/incremental_catalog.json
future_state:
future_state_path: integration_tests/sample_files/abnormal_state.json
skip_comprehensive_incremental_tests: true
full_refresh:
tests:
- config_path: secrets/config.json
# - config_path: secrets/config_sandbox.json
configured_catalog_path: integration_tests/full_refresh_catalog.json
ignored_fields:
balances:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ data:
connectorSubtype: api
connectorType: source
definitionId: d913b0f2-cc51-4e55-a44c-8ba1697b9239
dockerImageTag: 2.5.1
dockerImageTag: 2.5.2
dockerRepository: airbyte/source-paypal-transaction
documentationUrl: https://docs.airbyte.com/integrations/sources/paypal-transaction
githubIssueLabel: source-paypal-transaction
Expand Down
Loading
Loading