docs(documentation alignment): align DepthReductionCompressor and devcontainer discovery references
CI / integration_tests (pull_request) Failing after 1s
CI / e2e_tests (pull_request) Failing after 1s
CI / push-validation (pull_request) Successful in 21s
CI / helm (pull_request) Successful in 31s
CI / lint (pull_request) Failing after 53s
CI / unit_tests (pull_request) Failing after 1m54s
CI / build (pull_request) Successful in 3m45s
CI / quality (pull_request) Successful in 4m17s
CI / security (pull_request) Successful in 4m34s
CI / typecheck (pull_request) Successful in 4m35s
CI / coverage (pull_request) Has been skipped
CI / docker (pull_request) Has been skipped
CI / status-check (pull_request) Failing after 3s
CI / integration_tests (pull_request) Failing after 1s
CI / e2e_tests (pull_request) Failing after 1s
CI / push-validation (pull_request) Successful in 21s
CI / helm (pull_request) Successful in 31s
CI / lint (pull_request) Failing after 53s
CI / unit_tests (pull_request) Failing after 1m54s
CI / build (pull_request) Successful in 3m45s
CI / quality (pull_request) Successful in 4m17s
CI / security (pull_request) Successful in 4m34s
CI / typecheck (pull_request) Successful in 4m35s
CI / coverage (pull_request) Has been skipped
CI / docker (pull_request) Has been skipped
CI / status-check (pull_request) Failing after 3s
This commit is contained in:
@@ -129,7 +129,7 @@ Feature: Execution environment routing
|
||||
|
||||
Scenario: CONTAINER_RESOURCE_TYPES includes expected types
|
||||
Given I import CONTAINER_RESOURCE_TYPES
|
||||
Then it should contain "container-instance"
|
||||
Then the container types should contain "container-instance"
|
||||
And it should contain "devcontainer-instance"
|
||||
And it should contain "devcontainer-file"
|
||||
And it should not contain "git-checkout"
|
||||
|
||||
@@ -342,12 +342,12 @@ def step_import_types(context: Context) -> None:
|
||||
context.container_types = CONTAINER_RESOURCE_TYPES
|
||||
|
||||
|
||||
@then('it should contain "{value}"')
|
||||
@then('the container types should contain "{value}"')
|
||||
def step_types_contain(context: Context, value: str) -> None:
|
||||
assert value in context.container_types
|
||||
|
||||
|
||||
@then('it should not contain "{value}"')
|
||||
@then('the container types should not contain "{value}"')
|
||||
def step_types_not_contain(context: Context, value: str) -> None:
|
||||
assert value not in context.container_types
|
||||
|
||||
|
||||
Reference in New Issue
Block a user