-
Notifications
You must be signed in to change notification settings - Fork 124
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
Create symlink pointing to workdir of the last test run #1549
Conversation
3abda14
to
468c2bc
Compare
Signed-off-by: Lukas Kotek <lkotek@redhat.com>
468c2bc
to
c0b5a1e
Compare
Sorry for the late response. Seems this pull request slipped through the cracks. So the main motivation of the newly added symlink is to make it easy to check the last executed run. Isn't this a bit duplicating the
Also, in order to check the log of the (last) running job the
Btw, the @lukaszachy, @happz, thoughts? |
What would be the difference between the Yes, the race condition is still there, we'd have to use a locking file to synchronize all involved processes, but it should be doable (and worth the effort, I'd say, it shouldn't be hard and it would make the feature behave correctly). |
I also have to sorry for my response :-/ Yes, you're right about the motivation. It seemed to me like something I would use that time (it still does). Regarding
That's true, this was about to address more basic scenarios other than parallel execution. Regarding where to place symlink, I am completely opened to ideas here. I don't have any strong preference, it just seemed logical to me. |
The motivation here was that symlink is created no matter any special option like |
Actually, that is exactly the case of the symlink created by
Seems to duplicate existing functionality, closing. Feel free to reopen of you don't agree. |
Minor change intended to simplify checking of logs from the last run (e.g. in case with large number of test runs is present).