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

Py3.5 #171

Merged
merged 2 commits into from
Jul 11, 2016
Merged

Py3.5 #171

Show file tree
Hide file tree
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
9 changes: 3 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
sudo: false
language: python

python:
- 3.5

env:
- TOX_ENV=py27-django17
- TOX_ENV=py33-django17
Expand All @@ -13,12 +16,6 @@ env:
- TOX_ENV=py34-django19
- TOX_ENV=py35-django19

matrix:
# Python 3.5 not yet available on travis, watch this to see when it is.
allow_failures:
- env: TOX_ENV=py35-django18
- env: TOX_ENV=py35-django19

before_install:
- pip install codecov

Expand Down
2 changes: 1 addition & 1 deletion tests/test_s3boto.py
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ def test_storage_open_write(self):
file._multipart.upload_part_from_file.assert_called_with(
_file, 1, headers=self.storage.headers,
)
file._multipart.complete_upload.assert_called_once()
file._multipart.complete_upload.assert_called_once_with()

def test_storage_exists_bucket(self):
self.storage._connection.get_bucket.side_effect = S3ResponseError(404, 'No bucket')
Expand Down