diff options
-rw-r--r-- | gnu/packages/python.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 67effe77d6..dc7def5507 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -1934,7 +1934,8 @@ writing C extensions for Python as easy as Python itself.") 'install 'check (lambda _ (with-directory-excursion "/tmp" - (zero? (system* "python" "-c" "import numpy; numpy.test()")))) + (zero? (system* "python" "-c" + "import numpy; numpy.test(verbose=2)")))) (alist-delete 'check %standard-phases))))) |