diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2021-04-14 06:12:09 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2021-04-14 06:12:09 -0400 |
commit | e6e6bdfa70a918aeb4f436c1739e7baf75d2e75f (patch) | |
tree | a145caea46fe09d51d84a0f5f7fc5c75707c807a /tests/test_config.py | |
parent | 8979a69e1dfd78cc96f9b6efd111c9d8cf92e120 (diff) | |
download | python-coveragepy-git-e6e6bdfa70a918aeb4f436c1739e7baf75d2e75f.tar.gz |
test: remove the .egg test
People don't use .egg much anymore, distutils is showing deprecation
warnings, and coverage.py only deals with them the same way it deals
with .zip files, so let's just rely on a .zip test to cover that.
Diffstat (limited to 'tests/test_config.py')
-rw-r--r-- | tests/test_config.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_config.py b/tests/test_config.py index b1611c1b..3330290f 100644 --- a/tests/test_config.py +++ b/tests/test_config.py @@ -533,8 +533,8 @@ class ConfigFileTest(UsingModulesMixin, CoverageTest): [testenv] commands = - # Create tests/zipmods.zip, install the egg1 egg - python igor.py zip_mods install_egg + # Create tests/zipmods.zip + python igor.py zip_mods """ def assert_config_settings_are_correct(self, cov): |