Skip to content
This repository has been archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
Chart, DiffChart: Skip _test_category
Browse files Browse the repository at this point in the history
  • Loading branch information
mkoeppe committed Jul 13, 2021
1 parent 728c3df commit 9d19b21
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/sage/manifolds/chart.py
Expand Up @@ -363,7 +363,7 @@ def __init__(self, domain, coordinates, calc_method=None, periods=None, coord_re
<class 'sage.manifolds.chart.Chart'>
sage: assumptions() # no assumptions on x,y set
[]
sage: TestSuite(X).run()
sage: TestSuite(X).run(skip='_test_category')
Check that :trac:`32112` has been fixed::
Expand Down Expand Up @@ -1809,7 +1809,7 @@ def __init__(self, domain, coordinates, calc_method=None, bounds=None, periods=N
<class 'sage.manifolds.chart.RealChart'>
sage: assumptions() # assumptions set in X._init_coordinates
[x is real, y is real]
sage: TestSuite(X).run()
sage: TestSuite(X).run(skip='_test_category')
"""
super().__init__(domain, coordinates, calc_method=calc_method,
Expand Down
4 changes: 2 additions & 2 deletions src/sage/manifolds/differentiable/chart.py
Expand Up @@ -290,7 +290,7 @@ def __init__(self, domain, coordinates, calc_method=None, periods=None, coord_re
<class 'sage.manifolds.differentiable.chart.DiffChart'>
sage: assumptions() # no assumptions on x,y set by X._init_coordinates
[]
sage: TestSuite(X).run()
sage: TestSuite(X).run(skip='_test_category')
"""
super().__init__(domain, coordinates, calc_method=calc_method,
Expand Down Expand Up @@ -992,7 +992,7 @@ def __init__(self, domain, coordinates, calc_method=None,
<class 'sage.manifolds.differentiable.chart.RealDiffChart'>
sage: assumptions() # assumptions set in X._init_coordinates
[x is real, y is real]
sage: TestSuite(X).run()
sage: TestSuite(X).run(skip='_test_category')
"""
RealChart.__init__(self, domain, coordinates, calc_method=calc_method,
Expand Down

0 comments on commit 9d19b21

Please sign in to comment.