Skip to content

Commit

Permalink
Trac #20604: failing doctest with coxeter3
Browse files Browse the repository at this point in the history
Needs to solve that
{{{
File "src/sage/libs/coxeter3/coxeter_group.py", line 44, in
sage.libs.coxeter3.coxeter_group.CoxeterGroup.__init__
Failed example:
    TestSuite(CoxeterGroup(['A',2])).run()                    # optional
- coxeter3
Expected nothing
...
The following tests failed: _test_codegrees, _test_degrees
}}}

URL: http://trac.sagemath.org/20604
Reported by: chapoton
Ticket author(s): Frédéric Chapoton
Reviewer(s): Christian Stump
  • Loading branch information
Release Manager authored and vbraun committed May 15, 2016
2 parents 7e96c30 + 531a1d4 commit 17c23eb
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/sage/libs/coxeter3/coxeter_group.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,12 @@ def __init__(self, cartan_type):
sage: from sage.libs.coxeter3.coxeter_group import CoxeterGroup # optional - coxeter3
sage: CoxeterGroup(['A',2]) # optional - coxeter3
Coxeter group of type ['A', 2] implemented by Coxeter3
sage: TestSuite(CoxeterGroup(['A',2])).run() # optional - coxeter3
As degrees and codegrees are not implemented, they are skipped in the
testsuite::
sage: to_skip = ['_test_degrees', '_test_codegrees']
sage: TestSuite(CoxeterGroup(['A',2])).run(skip=to_skip) # optional - coxeter3
"""
category = CoxeterGroups()
if cartan_type.is_finite():
Expand Down

0 comments on commit 17c23eb

Please sign in to comment.