-
Notifications
You must be signed in to change notification settings - Fork 783
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
bats tests - parallelize #5552
base: main
Are you sure you want to change the base?
bats tests - parallelize #5552
Conversation
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: edsantiago The full list of commands accepted by this bot can be found here.
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
d118eb9
to
4a543fd
Compare
Ephemeral COPR build failed. @containers/packit-build please check. |
762e878
to
a195865
Compare
a195865
to
d05bc18
Compare
d05bc18
to
053354d
Compare
4d4e9c9
to
e653a16
Compare
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.
I assume once we enabled parallel runs here we can port that over for the bud tests on podman? I like to get the speed up there too.
I haven't looked deeply into the prefetch logic changes but this looks much easier than podman so that is good.
tests/test_runner.sh
Outdated
@@ -19,4 +19,4 @@ function execute() { | |||
TESTS=${@:-.} | |||
|
|||
# Run the tests. | |||
execute time bats --tap $TESTS | |||
execute time bats -j 4 --tap $TESTS |
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.
I would use $(nproc)
here instead of hard coding any count, should make it much faster when run locally.
e653a16
to
31b2ab6
Compare
b01284c
to
aed1bc5
Compare
A friendly reminder that this PR had no activity for 30 days. |
(A brief look after a link from containers/skopeo#2437 )
For this purpose, it would be better to have the image’s layers be clearly independent from any other test — maybe a |
… oh, and: debug-level logs could help. |
Thank you. I thought I had checked for conflicts, but must've missed something. I'll look into this again when time allows. |
d17cb1b
to
68722ca
Compare
Where is that |
I can’t see any obvious reason. I’d suggest doing the pushes with |
68722ca
to
55a1cdd
Compare
I understand this pull request is in draft state, but I got this warning on OpenScanHub:
It should be fixed before merging this pull request. |
3fb8b6f
to
5ff53d1
Compare
Got it with debug. In-page search for |
5ff53d1
to
aa0f9bb
Compare
All bats tests run with custom root/runroot, so it should be possible to parallelize them. Signed-off-by: Ed Santiago <santiago@redhat.com>
Signed-off-by: Ed Santiago <santiago@redhat.com>
Signed-off-by: Ed Santiago <santiago@redhat.com>
Signed-off-by: Ed Santiago <santiago@redhat.com>
Signed-off-by: Ed Santiago <santiago@redhat.com>
aa0f9bb
to
0ef22be
Compare
Note to self:
OK. Then:
How did we lose the compression format knowledge?? That’s not the immediate cause, but it suggests something unexpected is happening. Both have |
All bats tests run with custom root/runroot, so it should be
possible to parallelize them.
(As of this initial commit, tests fail on my laptop, and I expect them to fail here. I just want to get a sense for how things go.)
Signed-off-by: Ed Santiago santiago@redhat.com