Decorator marking a test that requires bitsandbytes. These tests are skipped when bitsandbytes isn't installed.
(test_case)
| 718 | |
| 719 | |
| 720 | def require_bitsandbytes(test_case): |
| 721 | """ |
| 722 | Decorator marking a test that requires bitsandbytes. These tests are skipped when bitsandbytes isn't installed. |
| 723 | """ |
| 724 | return pytest.mark.skipif(not is_bitsandbytes_available(), reason="test requires bitsandbytes")(test_case) |
| 725 | |
| 726 | |
| 727 | def require_quanto(test_case): |
nothing calls this directly
no test coverage detected
searching dependent graphs…