We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 39b7ca4 commit a8a3d6eCopy full SHA for a8a3d6e
src/sage/tests/startup.py
@@ -6,7 +6,8 @@
6
not work. Instead, we test this by starting a new Python process::
7
8
sage: from sage.tests.cmdline import test_executable
9
- sage: cmd = "from sage.all import *\nprint('IPython' in sys.modules)\n"
+ sage: environment = "sage.all"
10
+ sage: cmd = f"from {environment} import *\nprint('IPython' in sys.modules)\n"
11
sage: print(test_executable(["sage", "--python"], cmd)[0]) # long time
12
False
13
0 commit comments