Commit f685228
committed
BUG: fix test_npy_uintp_type_enum
test_npy_uintp_type_enum will fail if it is run before any of the
other tests in test_cython.py. The reason is that although it
imports the checks module, it does not contain the install_temp
parameter that ensures that the checks module is compiled. Running
test_npy_uintp_type_enum before any of the other tests in
test_cython.py will result in a
No module named 'checks'
error.
If the test is run after one of the other tests in test_cython.py
that do contain the install_temp parameter, test_npy_uintp_type_enum
will run fine.
Here we fix the issue by adding the install_temp parameter to
test_npy_uintp_type_enum.
Closes numpy#293541 parent 8cf1f7d commit f685228
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
347 | 347 | | |
348 | 348 | | |
349 | 349 | | |
350 | | - | |
| 350 | + | |
351 | 351 | | |
352 | 352 | | |
0 commit comments