Skip to content
Snippets Groups Projects
Commit a8275ea6 authored by Alexandre Abadie's avatar Alexandre Abadie
Browse files

dist/tools/testrunner: fix some pep8

parent d2ccbc85
No related branches found
No related tags found
No related merge requests found
#!/usr/bin/env python3
# Copyright (C) 2016 Kaspar Schleiser <kaspar@schleiser.de>
# 2014 Martine Lenders <mlenders@inf.fu-berlin.de>
#
......@@ -7,10 +5,15 @@
# General Public License v2.1. See the file LICENSE in the top level
# directory for more details.
import os, signal, sys, subprocess
from pexpect import spawnu, TIMEOUT, EOF
from traceback import print_tb
import os
import signal
import sys
import subprocess
import time
from traceback import print_tb
from pexpect import spawnu, TIMEOUT
def run(testfunc, timeout=10, echo=True, traceback=False):
env = os.environ.copy()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment