From b8733d421beefa2bebef33113e4b48b505458188 Mon Sep 17 00:00:00 2001 From: jumpei-ukita Date: Wed, 20 Dec 2023 22:00:03 +0900 Subject: [PATCH] skip boto test for py312 --- test/contrib/s3_test.py | 1 + 1 file changed, 1 insertion(+) diff --git a/test/contrib/s3_test.py b/test/contrib/s3_test.py index a043beff40..c24e69899a 100644 --- a/test/contrib/s3_test.py +++ b/test/contrib/s3_test.py @@ -108,6 +108,7 @@ def test_read_no_file_sse(self): t = self.create_target(encrypt_key=True) self.assertRaises(FileNotFoundException, t.open) + @unittest.skipIf(tuple(sys.version_info) >= (3, 12), "boto is not supported on Python 3.12+") def test_read_iterator_long(self): # write a file that is 5X the boto buffersize # to test line buffering