Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes #15755: ncf_tests fails to run 5.1 nightly #189

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 1 addition & 3 deletions scenario/ncf_tests.py
Expand Up @@ -64,11 +64,9 @@ def external_setup():
# Testing a ncf version
else:
if not cfengine_version:
cfengine_version = "ci/rudder-" + tag
cfengine_version = "ci/rudder-" + tag + "-nightly"
ret = requests.get("http://www.rudder-project.org/release-info/rudder/versions/" + tag + "/git_branch")
branch_version = ret.text
if branch_version == "master":
cfengine_version = cfengine_version + "-nightly"

if scenario.platform.hosts ['agent'].info['system'] not in need_external_setup:
ncf_version = "https://github.com/Normation/ncf.git#" + branch_version
Expand Down