summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rwxr-xr-xtest/run_device_tests.py12
-rw-r--r--test/timer_jump.py1
2 files changed, 8 insertions, 5 deletions
diff --git a/test/run_device_tests.py b/test/run_device_tests.py
index a2277afd4f..6e89bb2452 100755
--- a/test/run_device_tests.py
+++ b/test/run_device_tests.py
@@ -40,24 +40,26 @@ Run the script on the remote machine:
import argparse
import concurrent
+from concurrent.futures.thread import ThreadPoolExecutor
+from dataclasses import dataclass
+from dataclasses import field
+from enum import Enum
import io
import logging
import os
+from pathlib import Path
import re
import socket
import subprocess
import sys
import time
-from concurrent.futures.thread import ThreadPoolExecutor
-from dataclasses import dataclass, field
-from enum import Enum
-from pathlib import Path
from typing import BinaryIO, Dict, List, Optional, Tuple
# pylint: disable=import-error
import colorama # type: ignore[import]
-import fmap
from contextlib2 import ExitStack
+import fmap
+
# pylint: enable=import-error
diff --git a/test/timer_jump.py b/test/timer_jump.py
index a4350cecdf..bd2310f3d7 100644
--- a/test/timer_jump.py
+++ b/test/timer_jump.py
@@ -7,6 +7,7 @@
import time
+
DELAY = 5
ERROR_MARGIN = 0.5