summaryrefslogtreecommitdiff
path: root/tests/eggsrc
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2021-04-14 06:12:09 -0400
committerNed Batchelder <ned@nedbatchelder.com>2021-04-14 06:12:09 -0400
commite6e6bdfa70a918aeb4f436c1739e7baf75d2e75f (patch)
treea145caea46fe09d51d84a0f5f7fc5c75707c807a /tests/eggsrc
parent8979a69e1dfd78cc96f9b6efd111c9d8cf92e120 (diff)
downloadpython-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/eggsrc')
-rw-r--r--tests/eggsrc/egg1/__init__.py0
-rw-r--r--tests/eggsrc/egg1/egg1.py7
-rw-r--r--tests/eggsrc/setup.py11
3 files changed, 0 insertions, 18 deletions
diff --git a/tests/eggsrc/egg1/__init__.py b/tests/eggsrc/egg1/__init__.py
deleted file mode 100644
index e69de29b..00000000
--- a/tests/eggsrc/egg1/__init__.py
+++ /dev/null
diff --git a/tests/eggsrc/egg1/egg1.py b/tests/eggsrc/egg1/egg1.py
deleted file mode 100644
index 939386e3..00000000
--- a/tests/eggsrc/egg1/egg1.py
+++ /dev/null
@@ -1,7 +0,0 @@
-# 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 egg file!
-
-walrus = "Eggman"
-says = "coo-coo cachoo"
diff --git a/tests/eggsrc/setup.py b/tests/eggsrc/setup.py
deleted file mode 100644
index 26a0b650..00000000
--- a/tests/eggsrc/setup.py
+++ /dev/null
@@ -1,11 +0,0 @@
-# Licensed under the Apache License: http://www.apache.org/licenses/LICENSE-2.0
-# For details: https://github.com/nedbat/coveragepy/blob/master/NOTICE.txt
-
-from setuptools import setup
-
-setup(
- name="covtestegg1",
- packages=['egg1'],
- zip_safe=True,
- install_requires=[],
- )