⚠️⚠️⚠️ Buildbot failure⚠️⚠️⚠️Hi! The buildbotx86 Gentoo Installed with X 3.8 has failed when building commit74b0291. What do you need to do: - Don't panic.
- Checkthe buildbot page in the devguide if you don't know what the buildbots are or how they work.
- Go to the page of the buildbot that failed (https://buildbot.python.org/all/#builders/230/builds/317) and take a look at the build logs.
- Check if the failure is related to this commit (74b0291) or if it is a false positive.
- If the failure is related to this commit, please, reflect that on the issue and make a new Pull Request with a fix.
You can take a look at the buildbot page here: https://buildbot.python.org/all/#builders/230/builds/317 Failed tests: Failed subtests: - test_read_zip64_with_exe_prepended - test.test_zipfile.TestExecutablePrependedZip
- test_read_zip_with_exe_prepended - test.test_zipfile.TestExecutablePrependedZip
- test_execute_zip64 - test.test_zipfile.TestExecutablePrependedZip
- test_execute_zip2 - test.test_zipfile.TestExecutablePrependedZip
Summary of the results of the build (if available): == Tests result: FAILURE then FAILURE == 411 tests OK. 1 test failed: test_zipfile 11 tests skipped: test_asdl_parser test_clinic test_devpoll test_gdb test_kqueue test_msilib test_startfile test_winconsoleio test_winreg test_winsound test_zipfile64 1 re-run test: test_zipfile Total duration: 24 min 26 sec Click to see traceback logsTraceback (most recent call last): File"/buildbot/buildarea/cpython/3.8.ware-gentoo-x86.installed/build/target/lib/python3.8/test/test_zipfile.py", line2469, intest_read_zip64_with_exe_prependedself._test_zip_works(self.exe_zip64) File"/buildbot/buildarea/cpython/3.8.ware-gentoo-x86.installed/build/target/lib/python3.8/test/test_zipfile.py", line2457, in_test_zip_worksself.assertTrue(zipfile.is_zipfile(name),AssertionError:False is not true : is_zipfile failed on ziptestdata/exe_with_z64Traceback (most recent call last): File"/buildbot/buildarea/cpython/3.8.ware-gentoo-x86.installed/build/target/lib/python3.8/test/test_zipfile.py", line2482, intest_execute_zip64 output= subprocess.check_output([self.exe_zip64, sys.executable]) File"/buildbot/buildarea/cpython/3.8.ware-gentoo-x86.installed/build/target/lib/python3.8/subprocess.py", line411, incheck_outputreturn run(*popenargs,stdout=PIPE,timeout=timeout,check=True, File"/buildbot/buildarea/cpython/3.8.ware-gentoo-x86.installed/build/target/lib/python3.8/subprocess.py", line489, inrunwith Popen(*popenargs,**kwargs)as process: File"/buildbot/buildarea/cpython/3.8.ware-gentoo-x86.installed/build/target/lib/python3.8/subprocess.py", line845, in__init__self._execute_child(args, executable, preexec_fn, close_fds, File"/buildbot/buildarea/cpython/3.8.ware-gentoo-x86.installed/build/target/lib/python3.8/subprocess.py", line1689, in_execute_childraise child_exception_type(errno_num, err_msg, err_filename)FileNotFoundError:[Errno 2] No such file or directory: 'ziptestdata/exe_with_z64'Traceback (most recent call last): File"/buildbot/buildarea/cpython/3.8.ware-gentoo-x86.installed/build/target/lib/python3.8/test/test_zipfile.py", line2466, intest_read_zip_with_exe_prependedself._test_zip_works(self.exe_zip) File"/buildbot/buildarea/cpython/3.8.ware-gentoo-x86.installed/build/target/lib/python3.8/test/test_zipfile.py", line2457, in_test_zip_worksself.assertTrue(zipfile.is_zipfile(name),AssertionError:False is not true : is_zipfile failed on ziptestdata/exe_with_zipTraceback (most recent call last): File"/buildbot/buildarea/cpython/3.8.ware-gentoo-x86.installed/build/target/lib/python3.8/test/test_zipfile.py", line2475, intest_execute_zip2 output= subprocess.check_output([self.exe_zip, sys.executable]) File"/buildbot/buildarea/cpython/3.8.ware-gentoo-x86.installed/build/target/lib/python3.8/subprocess.py", line411, incheck_outputreturn run(*popenargs,stdout=PIPE,timeout=timeout,check=True, File"/buildbot/buildarea/cpython/3.8.ware-gentoo-x86.installed/build/target/lib/python3.8/subprocess.py", line489, inrunwith Popen(*popenargs,**kwargs)as process: File"/buildbot/buildarea/cpython/3.8.ware-gentoo-x86.installed/build/target/lib/python3.8/subprocess.py", line845, in__init__self._execute_child(args, executable, preexec_fn, close_fds, File"/buildbot/buildarea/cpython/3.8.ware-gentoo-x86.installed/build/target/lib/python3.8/subprocess.py", line1689, in_execute_childraise child_exception_type(errno_num, err_msg, err_filename)FileNotFoundError:[Errno 2] No such file or directory: 'ziptestdata/exe_with_zip' |
Uh oh!
There was an error while loading.Please reload this page.
Adds unittests for executables with a zipfile appended to test_zipfile
as zipfile.is_zipfile and zipfile.ZipFile work properly on these today.
This is being added as a regression test that#5053 would otherwise fail today.
https://bugs.python.org/issue28494