diff options
author | Cristián Maureira-Fredes <Cristian.Maureira-Fredes@qt.io> | 2022-03-30 20:48:56 +0200 |
---|---|---|
committer | Cristián Maureira-Fredes <cristian.maureira-fredes@qt.io> | 2022-04-02 16:43:59 +0200 |
commit | f9460f25543135e9b436285cbf25e30dc22c57a8 (patch) | |
tree | b1f67f0b2cd7737004541eab9d97143a8e3b9bce /testing/command.py | |
parent | 63b7c084faa1ef42ac22d94ad2832903caf954aa (diff) |
flake8: fix style issues on testing
Change-Id: I4e3e922ff95040999bc3bb1463c2e29783d5ee14
Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io>
Diffstat (limited to 'testing/command.py')
-rw-r--r-- | testing/command.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/testing/command.py b/testing/command.py index 00dcb485c..172039adb 100644 --- a/testing/command.py +++ b/testing/command.py @@ -70,18 +70,18 @@ The full mode can be tested locally by setting export COIN_RERUN_FAILED_ONLY=0 """ +import argparse import os import sys -import argparse -from textwrap import dedent from collections import OrderedDict +from textwrap import dedent from timeit import default_timer as timer -from .helper import script_dir, decorate -from .buildlog import builds from .blacklist import BlackList -from .runner import TestRunner +from .buildlog import builds +from .helper import decorate, script_dir from .parser import TestParser +from .runner import TestRunner # Should we repeat only failed tests? COIN_RERUN_FAILED_ONLY = True |