Decorator marking a test that requires note_seq. These tests are skipped when note_seq isn't installed.
(test_case)
| 279 | |
| 280 | |
| 281 | def require_note_seq(test_case): |
| 282 | """ |
| 283 | Decorator marking a test that requires note_seq. These tests are skipped when note_seq isn't installed. |
| 284 | """ |
| 285 | return unittest.skipUnless(is_note_seq_available(), "test requires note_seq")(test_case) |
| 286 | |
| 287 | |
| 288 | def require_torchsde(test_case): |
nothing calls this directly
no test coverage detected