kumquat-buildroot/support/testing/tests/package/test_python_midiutil.py
Julien Olivain f7f915fc4a package/python-midiutil: new package
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>
2023-07-30 12:58:41 +02:00

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"]