You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
src/sage/groups/perm_gps/permgroup_named.py: speed up a slow test
Fix the CI warning,
2025-07-14T18:38:36.5676939Z ##[warning]slow doctest:
2025-07-14T18:38:36.5679618Z all(SmallPermutationGroup(n,k).id() == [n,k]
2025-07-14T18:38:36.5681631Z for n in [1..64] for k in [1..numgps(n)]) # long time (180s)
2025-07-14T18:38:36.5683632Z Test ran for 67.66s cpu, 71.13s wall
by making two few improvements:
* Move the "long time" tag to the right line.
* Check only a random subset of (up to five) n and k, rather than
n <= 64 and all possible k.
0 commit comments