diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2022-11-26 18:00:05 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-26 18:00:05 (GMT) |
commit | 003f341e99234cf6088341e746ffef15e12ccda2 (patch) | |
tree | e5dd021337a7b1625125d9db7e2cf5b93aa55b6a /Lib/test | |
parent | 78365b8e283c78e23725748500f48dd2c2ca1161 (diff) | |
download | cpython-003f341e99234cf6088341e746ffef15e12ccda2.zip cpython-003f341e99234cf6088341e746ffef15e12ccda2.tar.gz cpython-003f341e99234cf6088341e746ffef15e12ccda2.tar.bz2 |
Fix zipfile packaging after GH-98103 (GH-99797)
* Add zipfile and test_zipfile to list of packages. Fixes regression introduced in #98103.
* Restore support for py -m test.test_zipfile
Diffstat (limited to 'Lib/test')
-rw-r--r-- | Lib/test/test_zipfile/__main__.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Lib/test/test_zipfile/__main__.py b/Lib/test/test_zipfile/__main__.py new file mode 100644 index 0000000..e25ac94 --- /dev/null +++ b/Lib/test/test_zipfile/__main__.py @@ -0,0 +1,7 @@ +import unittest + +from . import load_tests # noqa: F401 + + +if __name__ == "__main__": + unittest.main() |