-
Notifications
You must be signed in to change notification settings - Fork 337
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
Rep001 2 hooks #811
Rep001 2 hooks #811
Conversation
-stop early on test fail (mirrors stop early on build fail) -do we want stop-on-fail config settings for variants, tests?
…ring pre-install/release -show summary of all tests at end of build/release
-do a little better at cleaning up failed variant installs -current behaviour is OK (state is always valid), but can leave .building files and package version dirs
@@ -353,18 +370,26 @@ def _uid(self): | |||
class PackageRepositoryManager(object): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Note: These minor changes weren't really needed as part of this PR - this work was done when I started investigating a different direction. In any case, these changes fix a bug, where repositories would've been cached into an LRU pool that's shared across all instances of this class.
Implements pre-install/release running of package tests.
Note that this is not done as a pre-release hook plugin, because the way this works doesn't match up to the places in which these hooks are run.
The way pre-install (and release) tests are run is like so:
_redirected_base
) to point back to the true package install locationNote that #807 must be merged before this PR.