/ source-etherscan / acceptance-test-config.yml
acceptance-test-config.yml
 1  # See [Connector Acceptance Tests](https://docs.airbyte.com/connector-development/testing-connectors/connector-acceptance-tests-reference)
 2  # for more information about how to configure these tests
 3  connector_image: airbyte/source-etherscan:dev
 4  acceptance_tests:
 5    spec:
 6      tests:
 7        - spec_path: "source_etherscan/spec.yaml"
 8    connection:
 9      tests:
10        - config_path: "secrets/config.json"
11          status: "succeed"
12        - config_path: "integration_tests/invalid_config.json"
13          status: "failed"
14    discovery:
15      tests:
16        - config_path: "secrets/config.json"
17    basic_read:
18      tests:
19        - config_path: "secrets/config.json"
20          configured_catalog_path: "integration_tests/configured_catalog.json"
21          empty_streams: []
22  # TODO uncomment this block to specify that the tests should assert the connector outputs the records provided in the input file a file
23  #        expect_records:
24  #          path: "integration_tests/expected_records.jsonl"
25  #          exact_order: no
26    incremental: 
27      bypass_reason: "This connector does not implement incremental sync"
28  # TODO uncomment this block this block if your connector implements incremental sync: 
29  #    tests:
30  #      - config_path: "secrets/config.json"
31  #        configured_catalog_path: "integration_tests/configured_catalog.json"
32  #        future_state:
33  #          future_state_path: "integration_tests/abnormal_state.json"
34    full_refresh:
35      tests:
36        - config_path: "secrets/config.json"
37          configured_catalog_path: "integration_tests/configured_catalog.json"