Decorator marking a test that requires note_seq. These tests are skipped when note_seq isn't installed.
(test_case)
| 681 | |
| 682 | |
| 683 | def require_note_seq(test_case): |
| 684 | """ |
| 685 | Decorator marking a test that requires note_seq. These tests are skipped when note_seq isn't installed. |
| 686 | """ |
| 687 | return pytest.mark.skipif(not is_note_seq_available(), reason="test requires note_seq")(test_case) |
| 688 | |
| 689 | |
| 690 | def require_accelerator(test_case): |
nothing calls this directly
no test coverage detected
searching dependent graphs…