diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2021-05-01 22:38:55 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2021-05-02 07:38:20 -0400 |
commit | 6a3d3aaaf2aebb816c7287263c8097844280b233 (patch) | |
tree | 675124a02ef673e60ed4be951334beb17afd9489 /tests/test_plugins.py | |
parent | 3f19cd70ee61e126e1577302234bc23145a86dcf (diff) | |
download | python-coveragepy-git-6a3d3aaaf2aebb816c7287263c8097844280b233.tar.gz |
refactor: move exceptions to their own module
Diffstat (limited to 'tests/test_plugins.py')
-rw-r--r-- | tests/test_plugins.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/test_plugins.py b/tests/test_plugins.py index 21aeab14..3401895b 100644 --- a/tests/test_plugins.py +++ b/tests/test_plugins.py @@ -12,9 +12,10 @@ import pytest import coverage from coverage import env -from coverage.data import line_counts from coverage.control import Plugins -from coverage.misc import CoverageException, import_local_file +from coverage.data import line_counts +from coverage.exceptions import CoverageException +from coverage.misc import import_local_file import coverage.plugin |