-
Notifications
You must be signed in to change notification settings - Fork 212
remove extra space #4784
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
remove extra space #4784
Conversation
|
Combined with my other CI failure in #4783 where exactly the opposite pair of statuses happened (fail Mac and pass GitLab) I don't think it's my fault. Not that I thought either of those PRs should have an impact on the tests in general. |
|
I think the Mac test failure on the other PR was a dependency Git repo being down; I've restarted that job and it got past that step. The Gitlab failure here looks like an assertion failure in distance indexing: https://ucsc-ci.com/vgteam/vg/-/jobs/101653#L318 So there might be something genuinely wrong in the test at |
|
It looks like we're failing a randomized test for the zip code tree, which is seeded with the current time. vg/src/unittest/zip_code_tree.cpp Lines 3042 to 3046 in 3e4a4f2
This isn't using Catch's seed management and reporting, so we can't get the RNG seed that generates the failing test data. We should be using vg/src/unittest/randomness.hpp Lines 17 to 26 in 3e4a4f2
(That would be a great candidate for another lint rule/script.) So if we re-run the test it will probably pass, but we know it can fail, so we should fix the test to use the right seed and run the |
|
We could also consider changing the |
|
This passed so I'm going to merge it. #4787 has the zip code tree random seed thing changed; I'm going to use that to find a failure. |
Changelog Entry
To be copied to the draft changelog by merger:
vg autoindexlogging line is now a single spaceDescription
Running some commands and saw:
So I fixed it.