We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 097082c commit 1be9032Copy full SHA for 1be9032
tests/test_downloader_handlers.py
@@ -437,6 +437,8 @@ class S3AnonTestCase(unittest.TestCase):
437
import boto
438
except ImportError:
439
skip = 'missing boto library'
440
+ if six.PY3:
441
+ skip = 'S3 not supported on Py3'
442
443
def setUp(self):
444
self.s3reqh = S3DownloadHandler(Settings(),
@@ -459,6 +461,8 @@ class S3TestCase(unittest.TestCase):
459
461
460
462
463
464
465
466
467
# test use same example keys than amazon developer guide
468
# http://s3.amazonaws.com/awsdocs/S3/20060301/s3-dg-20060301.pdf
0 commit comments