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

Commit

Permalink
src/sage/repl/ipython_tests.py: Mark R interface tests # optional - rpy2
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthias Koeppe committed Feb 18, 2021
1 parent b2d4ab8 commit 8732076
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/sage/repl/ipython_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,9 @@
Next, test the ``pinfo`` magic for ``R`` interface code, see :trac:`26906`::
sage: from sage.repl.interpreter import get_test_shell
sage: shell = get_test_shell()
sage: shell.run_cell(u'%pinfo r.lm')
sage: from sage.repl.interpreter import get_test_shell # optional - rpy2
sage: shell = get_test_shell() # optional - rpy2
sage: shell.run_cell(u'%pinfo r.lm') # optional - rpy2
Signature: r.lm(...*args, **kwds)
...
String form: lm
Expand Down Expand Up @@ -122,9 +122,9 @@ def __cinit__(self):
Next, test the ``pinfo2`` magic for ``R`` interface code, see :trac:`26906`::
sage: from sage.repl.interpreter import get_test_shell
sage: shell = get_test_shell()
sage: shell.run_cell(u'%pinfo2 r.lm')
sage: from sage.repl.interpreter import get_test_shell # optional - rpy2
sage: shell = get_test_shell() # optional - rpy2
sage: shell.run_cell(u'%pinfo2 r.lm') # optional - rpy2
Signature: r.lm(...*args, **kwds)
...
String form: lm
Expand Down

0 comments on commit 8732076

Please sign in to comment.