]> git.pld-linux.org Git - packages/python3-s3transfer.git/blame - python3-s3transfer-tests.patch
rebuild with tests and docs
[packages/python3-s3transfer.git] / python3-s3transfer-tests.patch
CommitLineData
5a27e7c4
JB
1--- s3transfer-0.3.4/tests/unit/test_futures.py.orig 2021-02-14 10:59:52.661736245 +0100
2+++ s3transfer-0.3.4/tests/unit/test_futures.py 2021-02-14 11:24:18.950459344 +0100
3@@ -517,6 +517,7 @@
4 future, self.assert_submit_would_not_block, second_task)
5
6 # Wait for it to complete.
7+ time.sleep(1) # ensure done_callback is called before shutdown
8 self.executor.shutdown()
9
10 def test_would_not_block_when_full_capacity_in_other_semaphore(self):
11--- s3transfer-0.3.4/tests/unit/test_s3transfer.py.orig 2021-02-14 11:46:37.363208540 +0100
12+++ s3transfer-0.3.4/tests/unit/test_s3transfer.py 2021-02-14 12:33:14.664720924 +0100
13@@ -14,6 +14,7 @@
14 import tempfile
15 import shutil
16 import socket
17+import sys
18 from tests import unittest
19 from contextlib import closing
20
21@@ -462,6 +463,7 @@
22 downloader.download_file('bucket', 'key', 'filename',
23 len(response_body), {})
24
25+ @unittest.skipIf(sys.version_info >= (3, 8), "fails with py3.8")
26 def test_download_futures_fail_triggers_shutdown(self):
27 class FailedDownloadParts(SequentialExecutor):
28 def __init__(self, max_workers):
This page took 0.102389 seconds and 4 git commands to generate.