Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

tests: Skip a inttermittently failing s3 test #1777

Merged
merged 1 commit into from
Jul 20, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions test/s3_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
import tempfile

from target_test import FileSystemTargetTestMixin
from helpers import with_config, unittest
from helpers import with_config, unittest, skipOnTravis

from boto.exception import S3ResponseError
from boto.s3 import key
Expand Down Expand Up @@ -465,6 +465,7 @@ def test_copy_multipart_empty_file(self):
"""
self._run_multipart_copy_test(self.test_put_multipart_empty_file)

@skipOnTravis('https://travis-ci.org/spotify/luigi/jobs/145895385')
def test_copy_dir(self):
"""
Test copying 20 files from one folder to another
Expand Down Expand Up @@ -559,6 +560,3 @@ def _run_multipart_test(self, part_size, file_size, **kwargs):
key_size = s3_client.get_key(s3_path).size
self.assertEqual(file_size, key_size)
tmp_file.close()

if __name__ == '__main__':
unittest.main()