-
-
Notifications
You must be signed in to change notification settings - Fork 519
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 flaky simplicial set test #38940
Conversation
a55c33f
to
df9ba13
Compare
df9ba13
to
1830861
Compare
Documentation preview for this PR (built with commit f070aa3; changes) is ready! 🎉 |
The failed test is
This is obviously #38889 instead. By the way, GitHub Actions doesn't seem to be able to report test failure to the GitHub interface? |
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.
Thanks! The change looks good to me, as far as I understand the problem. But it would be good if someone more familiar with the code has a look at well.
Marking it already as "ci fix" so that other PRs don't keep falling because of this issue.
Since there is no actual code being changed (just doctests), I see no risk in accepting it. |
There's always the risk of accidentally telling the user "this is the right way to do things" while it actually relies on dangerous internal implementation detail e.g. are you sure that the 1-cell is not shared between different objects, and mutate it is safe? |
I am not 100% sure it is safe in any circumstance, but at the same time cannot think of a scenario where it is not safe. Maybe @jhpalmieri can have a deeper insight. |
It looks okay to me (after a quick glance). |
I didn't see these test failures pop up again, so this PR is definitely achieving its goal. Since there were no objections, let's get it in. |
Fixes sagemath#38888 . This test has been failing sporadically recently e.g. https://github.com /sagemath/sage/actions/runs/11733902583/job/32689016794?pr=38938 . From my understanding of simplicial set, the two `sigma_1` are actually representing two different cells (the wedge looks like a "8" shape), but because they both come from `S1` (the 1-sphere i.e. circle), they get the same name. SageMath does some magic during doctest so that dict entries are sorted, but the problem is ``` At this point, comparison between v and w is random, based on their location in memory. :: ``` so with some chance it fails. This change should make it deterministic --- since the two faces are named `sigma_1` and `sigma_1'`, the comparison should be by custom name…? ### 📝 Checklist <!-- Put an `x` in all the boxes that apply. --> - [x] The title is concise and informative. - [x] The description explains in detail what this PR is about. - [x] I have linked a relevant issue or discussion. - [x] I have created tests covering the changes. (not applicable) - [x] I have updated the documentation and checked the documentation preview. URL: sagemath#38940 Reported by: user202729 Reviewer(s): Tobias Diez
Fixes sagemath#38888 . This test has been failing sporadically recently e.g. https://github.com /sagemath/sage/actions/runs/11733902583/job/32689016794?pr=38938 . From my understanding of simplicial set, the two `sigma_1` are actually representing two different cells (the wedge looks like a "8" shape), but because they both come from `S1` (the 1-sphere i.e. circle), they get the same name. SageMath does some magic during doctest so that dict entries are sorted, but the problem is ``` At this point, comparison between v and w is random, based on their location in memory. :: ``` so with some chance it fails. This change should make it deterministic --- since the two faces are named `sigma_1` and `sigma_1'`, the comparison should be by custom name…? ### 📝 Checklist <!-- Put an `x` in all the boxes that apply. --> - [x] The title is concise and informative. - [x] The description explains in detail what this PR is about. - [x] I have linked a relevant issue or discussion. - [x] I have created tests covering the changes. (not applicable) - [x] I have updated the documentation and checked the documentation preview. URL: sagemath#38940 Reported by: user202729 Reviewer(s): Tobias Diez
Fixes #38888 .
This test has been failing sporadically recently e.g. https://github.com/sagemath/sage/actions/runs/11733902583/job/32689016794?pr=38938 .
From my understanding of simplicial set, the two
sigma_1
are actually representing two different cells (the wedge looks like a "8" shape), but because they both come fromS1
(the 1-sphere i.e. circle), they get the same name.SageMath does some magic during doctest so that dict entries are sorted, but the problem is
so with some chance it fails.
This change should make it deterministic --- since the two faces are named
sigma_1
andsigma_1'
, the comparison should be by custom name…?📝 Checklist