summaryrefslogtreecommitdiff
path: root/tests/conftest.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2018-09-13 09:42:26 -0400
committerNed Batchelder <ned@nedbatchelder.com>2018-09-13 09:42:26 -0400
commit189504112784fbafc68ee0757754e8806573d279 (patch)
treefb18607b44e8fb3b68789e5ac80a67a5c570e369 /tests/conftest.py
parent42c0c58c452f6f10b26986cefe9cd00688081546 (diff)
downloadpython-coveragepy-git-189504112784fbafc68ee0757754e8806573d279.tar.gz
Check for import order
Diffstat (limited to 'tests/conftest.py')
-rw-r--r--tests/conftest.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/conftest.py b/tests/conftest.py
index aeccec88..e9802517 100644
--- a/tests/conftest.py
+++ b/tests/conftest.py
@@ -7,9 +7,10 @@ Pytest auto configuration.
This module is run automatically by pytest, to define and enable fixtures.
"""
-import pytest
import warnings
+import pytest
+
from coverage import env