https://github.com/mupq/pqm4
Revision 56417d9f69737c033715dab4957436bdfef91589 authored by Matthias J. Kannwischer on 24 July 2020, 07:55:01 UTC, committed by Matthias J. Kannwischer on 24 July 2020, 07:55:01 UTC
1 parent cb2caa2
Raw File
Tip revision: 56417d9f69737c033715dab4957436bdfef91589 authored by Matthias J. Kannwischer on 24 July 2020, 07:55:01 UTC
clean-up interface
Tip revision: 56417d9
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