f7f915fc4a
A pure python library for creating multi-track MIDI files. https://github.com/MarkCWirt/MIDIUtil Signed-off-by: Julien Olivain <ju.o@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
12 lines
337 B
Python
12 lines
337 B
Python
from tests.package.test_python import TestPythonPackageBase
|
|
|
|
|
|
class TestPythonPy3MidiUtil(TestPythonPackageBase):
|
|
__test__ = True
|
|
config = TestPythonPackageBase.config + \
|
|
"""
|
|
BR2_PACKAGE_PYTHON3=y
|
|
BR2_PACKAGE_PYTHON_MIDIUTIL=y
|
|
"""
|
|
sample_scripts = ["tests/package/sample_python_midiutil.py"]
|