We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
simplicial_sets
No response
Tests pass
sage -t --warn-long 5.0 --random-seed=52078804102925852962925524043712901488 src/sage/categories/simplicial_sets.py ********************************************************************** File "src/sage/categories/simplicial_sets.py", line 538, in sage.categories.simplicial_sets.SimplicialSets.Pointed.ParentMethods.cover Failed example: C.face_data() Expected: {(*, ()): None, (*, (1,2,3)): None, (*, (1,3,2)): None, (sigma_1, ()): ((*, (1,2,3)), (*, ())), (sigma_1, ()): ((*, (1,3,2)), (*, ())), (sigma_1, (1,2,3)): ((*, (1,3,2)), (*, (1,2,3))), (sigma_1, (1,2,3)): ((*, ()), (*, (1,2,3))), (sigma_1, (1,3,2)): ((*, ()), (*, (1,3,2))), (sigma_1, (1,3,2)): ((*, (1,2,3)), (*, (1,3,2)))} Got: {(*, ()): None, (*, (1,2,3)): None, (*, (1,3,2)): None, (sigma_1, ()): ((*, (1,3,2)), (*, ())), (sigma_1, ()): ((*, (1,2,3)), (*, ())), (sigma_1, (1,2,3)): ((*, ()), (*, (1,2,3))), (sigma_1, (1,2,3)): ((*, (1,3,2)), (*, (1,2,3))), (sigma_1, (1,3,2)): ((*, (1,2,3)), (*, (1,3,2))), (sigma_1, (1,3,2)): ((*, ()), (*, (1,3,2)))}
Linux: https://github.com/sagemath/sage/actions/runs/11589629492/job/32265510963
The text was updated successfully, but these errors were encountered:
It seems to be the same dictionary, but presented in different order. Maybe some change in the python version?
Sorry, something went wrong.
It happens across multiple python versions.
May be we should use something like that to make the test more robust ?
sage: res = C.domain().face_data() sage: type(res) <class 'dict'> sage: sorted(res.items()) [((*, ()), None), ((*, (1,2,3)), None), ((*, (1,3,2)), None), ((sigma_1, ()), ((*, (1,2,3)), (*, ()))), ((sigma_1, ()), ((*, ()), (*, ()))), ((sigma_1, (1,2,3)), ((*, (1,3,2)), (*, (1,2,3)))), ((sigma_1, (1,2,3)), ((*, (1,2,3)), (*, (1,2,3)))), ((sigma_1, (1,3,2)), ((*, ()), (*, (1,3,2)))), ((sigma_1, (1,3,2)), ((*, (1,3,2)), (*, (1,3,2))))]
or
sage: {k: res[k] for k in sorted(res)} {(*, ()): None, (*, (1,2,3)): None, (*, (1,3,2)): None, (sigma_1, ()): ((*, (1,2,3)), (*, ())), (sigma_1, ()): ((*, ()), (*, ())), (sigma_1, (1,2,3)): ((*, (1,3,2)), (*, (1,2,3))), (sigma_1, (1,2,3)): ((*, (1,2,3)), (*, (1,2,3))), (sigma_1, (1,3,2)): ((*, ()), (*, (1,3,2))), (sigma_1, (1,3,2)): ((*, (1,3,2)), (*, (1,3,2)))}
Successfully merging a pull request may close this issue.
Steps To Reproduce
No response
Expected Behavior
Tests pass
Actual Behavior
Additional Information
No response
Environment
Linux: https://github.com/sagemath/sage/actions/runs/11589629492/job/32265510963
Checklist
The text was updated successfully, but these errors were encountered: