Decorator marking a test that requires note_seq. These tests are skipped when note_seq isn't installed.
(test_case)
| 490 | |
| 491 | |
| 492 | def require_note_seq(test_case): |
| 493 | """ |
| 494 | Decorator marking a test that requires note_seq. These tests are skipped when note_seq isn't installed. |
| 495 | """ |
| 496 | return unittest.skipUnless(is_note_seq_available(), "test requires note_seq")(test_case) |
| 497 | |
| 498 | |
| 499 | def require_accelerator(test_case): |
nothing calls this directly
no test coverage detected
searching dependent graphs…