1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

tests/pkg_cmsis-dsp: cleanup Python test script

This commit is contained in:
Alexandre Abadie 2020-01-08 09:43:16 +01:00
parent ff285cb3e0
commit 9988d98929
No known key found for this signature in database
GPG Key ID: 1C919A403CAE1405

View File

@ -1,7 +1,7 @@
#!/usr/bin/env python3
import os
import sys
from testrunner import run
def testfunc(child):
@ -11,6 +11,4 @@ def testfunc(child):
if __name__ == "__main__":
sys.path.append(os.path.join(os.environ['RIOTTOOLS'], 'testrunner'))
from testrunner import run
sys.exit(run(testfunc))