From d10e03c4347198f6f04cf31103cee53cd02f2ee0 Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Thu, 9 Jan 2020 08:52:38 -0500 Subject: A test of running coverage when it has been zipped. #862 --- igor.py | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'igor.py') diff --git a/igor.py b/igor.py index 56674c06..a742cb8e 100644 --- a/igor.py +++ b/igor.py @@ -225,6 +225,10 @@ def do_zip_mods(): zf.close() + zf = zipfile.ZipFile("tests/covmain.zip", "w") + zf.write("coverage/__main__.py", "__main__.py") + zf.close() + def do_install_egg(): """Install the egg1 egg for tests.""" -- cgit v1.2.1