File tree 6 files changed +9
-4
lines changed
pipelines/airbyte_ci/connectors/test/steps
6 files changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -279,6 +279,10 @@ The traffic recorded on the control connector is passed to the target connector
279
279
280
280
## Changelog
281
281
282
+ ### 0.18.2
283
+
284
+ Allow live tests with or without state in CI.
285
+
282
286
### 0.18.1
283
287
284
288
Fix extra argument.
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
4
4
5
5
[tool .poetry ]
6
6
name = " live-tests"
7
- version = " 0.18.1 "
7
+ version = " 0.18.2 "
8
8
description = " Contains utilities for testing connectors against live data."
9
9
authors = [
" Airbyte <[email protected] >" ]
10
10
license = " MIT"
Original file line number Diff line number Diff line change @@ -143,7 +143,7 @@ def pytest_configure(config: Config) -> None:
143
143
config .stash [stash_keys .TEST_EVALUATION_MODE ] = TestEvaluationMode (config .getoption ("--test-evaluation-mode" , "strict" ))
144
144
145
145
if config .stash [stash_keys .RUN_IN_AIRBYTE_CI ]:
146
- config .stash [stash_keys .SHOULD_READ_WITH_STATE ] = bool (get_option_or_fail ( config , "--should-read-with-state" ))
146
+ config .stash [stash_keys .SHOULD_READ_WITH_STATE ] = bool (config . getoption ( "--should-read-with-state" ))
147
147
elif _should_read_with_state := config .getoption ("--should-read-with-state" ):
148
148
config .stash [stash_keys .SHOULD_READ_WITH_STATE ] = _should_read_with_state
149
149
else :
Original file line number Diff line number Diff line change @@ -790,6 +790,7 @@ airbyte-ci connectors --language=low-code migrate-to-manifest-only
790
790
791
791
| Version | PR | Description |
792
792
| ---------| ---------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------|
793
+ | 4.32.4 | [ #44173 ] ( https://github.com/airbytehq/airbyte/pull/44173 ) | Bug fix for live tests' --should-read-with-state handling. |
793
794
| 4.32.3 | [ #44118 ] ( https://github.com/airbytehq/airbyte/pull/44118 ) | Improve error handling in live tests. |
794
795
| 4.32.2 | [ #43970 ] ( https://github.com/airbytehq/airbyte/pull/43970 ) | Make ` connectors publish ` early exit if no connectors are selected. |
795
796
| 4.32.1 | [ #41642 ] ( https://github.com/airbytehq/airbyte/pull/41642 ) | Avoid transient publish failures by increasing ` POETRY_REQUESTS_TIMEOUT ` and setting retries on ` PublishToPythonRegistry ` . |
Original file line number Diff line number Diff line change @@ -511,7 +511,7 @@ def _get_command_options(self) -> List[str]:
511
511
if self .run_id :
512
512
command_options += ["--run-id" , self .run_id ]
513
513
if self .should_read_with_state :
514
- command_options += ["--should-read-with-state" , self . should_read_with_state ]
514
+ command_options += ["--should-read-with-state" ]
515
515
if self .test_evaluation_mode :
516
516
command_options += ["--test-evaluation-mode" , self .test_evaluation_mode ]
517
517
if self .selected_streams :
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
4
4
5
5
[tool .poetry ]
6
6
name = " pipelines"
7
- version = " 4.32.3 "
7
+ version = " 4.32.4 "
8
8
description = " Packaged maintained by the connector operations team to perform CI for connectors' pipelines"
9
9
authors = [
" Airbyte <[email protected] >" ]
10
10
You can’t perform that action at this time.
0 commit comments