Skip to content

Commit

Permalink
Source Facebook Marketing #5190 - update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
vitaliizazmic committed Oct 29, 2021
1 parent 9cecea7 commit 55875b4
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -81,11 +81,17 @@ class BasicReadTestConfig(BaseConfig):


class FullRefreshConfig(BaseConfig):
"""Full refresh test config
Attributes:
ignored_fields for each stream, list of fields path. Path should be in format "object_key/object_key2"
"""

config_path: str = config_path
configured_catalog_path: str = configured_catalog_path
timeout_seconds: int = timeout_seconds
ignored_fields: Optional[Mapping[str, List[str]]] = Field(
description="List of fields path splitted by stream for ignoring in sequential reads test"
description="For each stream, list of fields path ignoring in sequential reads test"
)


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,7 @@ This test performs two read operations on all streams which support full refresh
| `config_path` | string | `secrets/config.json` |Path to a JSON object representing a valid connector configuration|
| `configured_catalog_path` | string | `integration_tests/configured_catalog.json` |Path to configured catalog|
| `timeout_seconds` | int | 20*60 |Test execution timeout in seconds|
| `ignored_fields` | dict | None |For each stream, list of fields path ignoring in sequential reads test|

## Test Incremental sync
### TestTwoSequentialReads
Expand Down

0 comments on commit 55875b4

Please sign in to comment.