()
| 46 | |
| 47 | @patch("stumpy.config.STUMPY_THREADS_PER_BLOCK", TEST_THREADS_PER_BLOCK) |
| 48 | def test_gpu_stump_int_input(): |
| 49 | with pytest.raises(TypeError): |
| 50 | gpu_stump(np.arange(10), 5, ignore_trivial=True) |
| 51 | |
| 52 | |
| 53 | @pytest.mark.filterwarnings("ignore", category=NumbaPerformanceWarning) |
nothing calls this directly
no test coverage detected