URL: https://github.com/freeipa/freeipa/pull/5476 Author: flo-renaud Title: #5476: ipatests: fix incomplete nightly def in nightly_previous Action: opened
PR body: """ The job definition for fedora-previous/test_installation_client is missing the .py in the test file: test_suite: test_integration/test_installation_client should be instead: test_suite: test_integration/test_installation_client.py """ To pull the PR as Git branch: git remote add ghfreeipa https://github.com/freeipa/freeipa git fetch ghfreeipa pull/5476/head:pr5476 git checkout pr5476
From 2de1414827ef2560a1080e410a98edafbc1e0194 Mon Sep 17 00:00:00 2001 From: Florence Blanc-Renaud <f...@redhat.com> Date: Tue, 26 Jan 2021 13:43:07 +0100 Subject: [PATCH] ipatests: fix incomplete nightly def in nightly_previous The job definition for fedora-previous/test_installation_client is missing the .py in the test file: test_suite: test_integration/test_installation_client should be instead: test_suite: test_integration/test_installation_client.py --- ipatests/prci_definitions/nightly_previous.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ipatests/prci_definitions/nightly_previous.yaml b/ipatests/prci_definitions/nightly_previous.yaml index c0685a85f3d..58882a92c46 100644 --- a/ipatests/prci_definitions/nightly_previous.yaml +++ b/ipatests/prci_definitions/nightly_previous.yaml @@ -1107,7 +1107,7 @@ jobs: class: RunPytest args: build_url: '{fedora-previous/build_url}' - test_suite: test_integration/test_installation_client + test_suite: test_integration/test_installation_client.py template: *ci-master-previous timeout: 7200 topology: *master_1repl_1client
_______________________________________________ FreeIPA-devel mailing list -- freeipa-devel@lists.fedorahosted.org To unsubscribe send an email to freeipa-devel-le...@lists.fedorahosted.org Fedora Code of Conduct: https://docs.fedoraproject.org/en-US/project/code-of-conduct/ List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines List Archives: https://lists.fedorahosted.org/archives/list/freeipa-devel@lists.fedorahosted.org