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/zipsrc | |
| 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/zipsrc')
| -rw-r--r-- | tests/zipsrc/zip1/__init__.py | 0 | ||||
| -rw-r--r-- | tests/zipsrc/zip1/zip1.py | 7 |
2 files changed, 7 insertions, 0 deletions
diff --git a/tests/zipsrc/zip1/__init__.py b/tests/zipsrc/zip1/__init__.py new file mode 100644 index 00000000..e69de29b --- /dev/null +++ b/tests/zipsrc/zip1/__init__.py diff --git a/tests/zipsrc/zip1/zip1.py b/tests/zipsrc/zip1/zip1.py new file mode 100644 index 00000000..79e0ebc3 --- /dev/null +++ b/tests/zipsrc/zip1/zip1.py @@ -0,0 +1,7 @@ +# Licensed under the Apache License: http://www.apache.org/licenses/LICENSE-2.0 +# For details: https://github.com/nedbat/coveragepy/blob/master/NOTICE.txt + +# My zip file! + +lighter = "Zippo" +says = "coo-coo cachoo" |
