summaryrefslogtreecommitdiff
path: root/tests/end2end/fixtures/quteprocess.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/end2end/fixtures/quteprocess.py')
-rw-r--r--tests/end2end/fixtures/quteprocess.py25
1 files changed, 12 insertions, 13 deletions
diff --git a/tests/end2end/fixtures/quteprocess.py b/tests/end2end/fixtures/quteprocess.py
index a15744c05..141b2162c 100644
--- a/tests/end2end/fixtures/quteprocess.py
+++ b/tests/end2end/fixtures/quteprocess.py
@@ -19,27 +19,26 @@
"""Fixtures to run qutebrowser in a QProcess and communicate."""
+import collections
+import contextlib
+import datetime
+import itertools
+import json
+import logging
import pathlib
import re
import sys
-import time
-import datetime
-import logging
import tempfile
-import contextlib
-import itertools
-import collections
-import json
+import time
-import yaml
import pytest
+import yaml
-from qutebrowser.misc import ipc
-from qutebrowser.utils import log, utils, javascript
-from helpers import testutils
from end2end.fixtures import testprocess
-from qutebrowser.qt import QtGui, QtCore
-
+from helpers import testutils
+from qutebrowser.misc import ipc
+from qutebrowser.qt import QtCore, QtGui
+from qutebrowser.utils import javascript, log, utils
instance_counter = itertools.count()