summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRalf Gommers <ralf.gommers@gmail.com>2020-07-27 10:45:24 +0200
committerGitHub <noreply@github.com>2020-07-27 10:45:24 +0200
commit7d04e229f52db74fef1e1d84d7f00dbf3a92addd (patch)
treeaf0b2dc6a27050b7b9cd783519ecb892e5a56d04
parent1ce54575b17071d40e4c1519007b2ec7d9a1b6d3 (diff)
parentce77458baaa9f452f89a5e80809dc7cd4fdc0140 (diff)
downloadnumpy-7d04e229f52db74fef1e1d84d7f00dbf3a92addd.tar.gz
Merge pull request #16949 from person142/runtests-ipython-colors
ENH: enable colors for `runtests.py --ipython`
-rwxr-xr-xruntests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtests.py b/runtests.py
index beaf668d6..8aefab0db 100755
--- a/runtests.py
+++ b/runtests.py
@@ -202,7 +202,7 @@ def main(argv):
import warnings; warnings.filterwarnings("always")
import IPython
import numpy as np
- IPython.embed(user_ns={"np": np})
+ IPython.embed(colors='neutral', user_ns={"np": np})
sys.exit(0)
if args.shell: