From 10ad17b853e0629dd8393eb19e1bce6fab2e0edc Mon Sep 17 00:00:00 2001 From: Dilyan Marinov Date: Tue, 19 Mar 2024 20:07:22 +0200 Subject: [PATCH] vdk-control-cli: uncomment secrets test Uncomment test after https://github.com/vmware/versatile-data-kit/pull/3125 Signed-off-by: Dilyan Marinov --- .../tests/test_secrets_plugin.py | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/projects/vdk-plugins/vdk-plugin-control-cli/tests/test_secrets_plugin.py b/projects/vdk-plugins/vdk-plugin-control-cli/tests/test_secrets_plugin.py index 33a9d206b2..9f903169c0 100644 --- a/projects/vdk-plugins/vdk-plugin-control-cli/tests/test_secrets_plugin.py +++ b/projects/vdk-plugins/vdk-plugin-control-cli/tests/test_secrets_plugin.py @@ -61,12 +61,11 @@ def test_secrets_plugin_no_url_configured(): ): runner = CliEntryBasedTestRunner(vdk_plugin_control_cli, secrets_plugin) - # TODO: Uncomment this after vdk-core release - # result: Result = runner.invoke( - # ["run", jobs_path_from_caller_directory("simple-job")] - # ) - # # job that doesn't explicitly use secrets should fail due to secrets overrides in core - # cli_assert_equal(1, result) + result: Result = runner.invoke( + ["run", jobs_path_from_caller_directory("simple-job")] + ) + # job that doesn't explicitly use secrets should fail due to secrets overrides in core + cli_assert_equal(1, result) result: Result = runner.invoke( ["run", jobs_path_from_caller_directory("secrets-job")]