We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7b72cb8 commit 57056edCopy full SHA for 57056ed
tests/conftest.py
@@ -499,10 +499,12 @@ def fail_if_missing_dependent_operators(admin_client: DynamicClient) -> None:
499
break
500
501
else:
502
- missing_operators.append(operator_name)
+ missing_operators.append(
503
+ f"Operator {operator_name} is installed but CSV is not in {csv.Status.SUCCEEDED} state"
504
+ )
505
506
507
+ missing_operators.append(f"{operator_name} is not installed")
508
509
if missing_operators:
- pytest.fail(f"Missing dependent operators: {missing_operators}")
510
+ pytest.fail(missing_operators)
0 commit comments