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

fix for issue with source_download set to latest #752

Open
wants to merge 15 commits into
base: develop
Choose a base branch
from
Open
2 changes: 1 addition & 1 deletion lib/pavilion/builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,7 @@ def _update_src(self):

if (src_url is not None
and ((src_download == 'missing' and found_src_path is None)
or src_download == 'latest')):
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You've just changed the behavior of 'latest' such that it is now doing the same as 'missing'. That's not the problem. It seems that the files are getting downloaded, but they're not getting copied into their expected destination where Pavilion can find them.

or src_download == 'latest' and found_src_path is None)):

if self._download_dest is None:
raise TestBuilderError(
Expand Down
Loading