Revision 8274c418ab5145c31d194edd4f9937a134a8f343 authored by Matthias J. Kannwischer on 04 June 2021, 08:24:25 UTC, committed by GitHub on 04 June 2021, 08:24:25 UTC
1 parent 5ebac3b
Raw File
test.py
#!/usr/bin/env python3
from mupq import mupq
from interface import M4Settings, M4

import sys

if __name__ == "__main__":
    with M4() as m4:
        test = mupq.SimpleTest(M4Settings(), m4)
        test.test_all(sys.argv[1:])
back to top