summaryrefslogtreecommitdiff
path: root/tests/test_parser.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2021-01-31 09:18:40 -0500
committerNed Batchelder <ned@nedbatchelder.com>2021-01-31 10:08:59 -0500
commit2faae252d853572cf7403528075461569ac137d1 (patch)
tree609cef41369533ee7950f67c8054ceb778387ea6 /tests/test_parser.py
parent65b5830a4d13d65c3bb314dd4894d565a16ceb9b (diff)
downloadpython-coveragepy-git-2faae252d853572cf7403528075461569ac137d1.tar.gz
style: correct placement of auto-added pytest imports
Diffstat (limited to 'tests/test_parser.py')
-rw-r--r--tests/test_parser.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/test_parser.py b/tests/test_parser.py
index 49b23f9b..14950c3d 100644
--- a/tests/test_parser.py
+++ b/tests/test_parser.py
@@ -5,13 +5,14 @@
import textwrap
+import pytest
+
from coverage import env
from coverage.misc import NotPython
from coverage.parser import PythonParser
from tests.coveragetest import CoverageTest, xfail
from tests.helpers import arcz_to_arcs
-import pytest
class PythonParserTest(CoverageTest):