gnu: python2-numpy: Delete file that depends on deleted test.

This is a follow-up to commit ec4892c742.

* gnu/packages/python-xyz.scm (python2-numpy)[arguments]: Also delete a second
test file that depends on the previously deleted test file.
This commit is contained in:
Ricardo Wurmus 2021-12-02 09:44:27 +01:00
parent 07a80e30a1
commit 24832d2ebd
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC

View File

@ -5366,7 +5366,9 @@ capabilities.")
(add-after 'unpack 'delete-failing-test
(lambda _
;; There's just one failing test here.
(delete-file "numpy/linalg/tests/test_linalg.py")))))))
(delete-file "numpy/linalg/tests/test_linalg.py")
;; ...and this one depends on the previous one.
(delete-file "numpy/matrixlib/tests/test_matrix_linalg.py")))))))
(native-inputs
`(("python-cython" ,python2-cython)
("python-pytest" ,python2-pytest)