diff options
| author | Ned Batchelder <ned@nedbatchelder.com> | 2018-09-13 09:42:26 -0400 |
|---|---|---|
| committer | Ned Batchelder <ned@nedbatchelder.com> | 2018-09-13 09:42:26 -0400 |
| commit | 189504112784fbafc68ee0757754e8806573d279 (patch) | |
| tree | fb18607b44e8fb3b68789e5ac80a67a5c570e369 /tests/conftest.py | |
| parent | 42c0c58c452f6f10b26986cefe9cd00688081546 (diff) | |
| download | python-coveragepy-git-189504112784fbafc68ee0757754e8806573d279.tar.gz | |
Check for import order
Diffstat (limited to 'tests/conftest.py')
| -rw-r--r-- | tests/conftest.py | 3 |
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 |
