Skip to content

Commit

Permalink
cicd: use latest docker
Browse files Browse the repository at this point in the history
  • Loading branch information
paulm2 authored and Dilyan Marinov committed Nov 23, 2023
1 parent cb86347 commit c3f762e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
1 change: 0 additions & 1 deletion projects/vdk-plugins/vdk-kerberos-auth/.plugin-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
variables:
PLUGIN_NAME: vdk-kerberos-auth
script:
- openssl version
# krb5-user is a requirement for the tests because the Kerberos server is configured via kadmin
- export DEBIAN_FRONTEND=noninteractive
- apt-get update
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,10 @@ def setUp(self) -> None:
def test_no_authentication(self):
with mock.patch.dict(
os.environ,
{"VDK_KRB_AUTH_FAIL_FAST": "true"},
{
"VDK_KRB_AUTH_FAIL_FAST": "true",
"VDK_LOG_EXECUTION_RESULT": "True",
},
):
result: Result = self.__runner.invoke(
["run", jobs_path_from_caller_directory("test-job")]
Expand Down Expand Up @@ -67,6 +70,7 @@ def test_kinit_authentication(self):
"VDK_KRB_AUTH": "kinit",
"VDK_KRB_AUTH_FAIL_FAST": "true",
"VDK_KRB5_CONF_FILENAME": krb5_conf_filename,
"VDK_LOG_EXECUTION_RESULT": "True",
},
):
result: Result = self.__runner.invoke(
Expand Down Expand Up @@ -211,6 +215,7 @@ def test_minikerberos_authentication(self):
"VDK_KEYTAB_REALM": "EXAMPLE.COM",
"VDK_KERBEROS_KDC_HOST": "localhost",
"VDK_KRB5_CONF_FILENAME": krb5_conf_filename,
"VDK_LOG_EXECUTION_RESULT": "True",
},
):
result: Result = self.__runner.invoke(
Expand Down

0 comments on commit c3f762e

Please sign in to comment.