From 50cc68846f9b78a4d0984c5a9475203b3c87c1e0 Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Wed, 14 Apr 2021 11:50:15 -0400 Subject: test: improve zipfile test Before this commit, the GetZipBytesTest.test_get_encoded_zip_files test was flaky on Python 3.10.0a7. Since I had just added new files to the common zip file, I tried splitting the newly added stuff into its own file, and that seemed to fix the problem. --- tests/test_filereporter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/test_filereporter.py') diff --git a/tests/test_filereporter.py b/tests/test_filereporter.py index 8ce2201d..1e8513f8 100644 --- a/tests/test_filereporter.py +++ b/tests/test_filereporter.py @@ -89,7 +89,7 @@ class FileReporterTest(UsingModulesMixin, CoverageTest): assert bcu > acu and bcu >= acu and bcu != acu def test_zipfile(self): - sys.path.append("tests/zipmods.zip") + sys.path.append("tests/zip1.zip") # Test that we can get files out of zipfiles, and read their source files. # The zip1 module is installed by an action in igor.py. -- cgit v1.2.1