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

Move boto3 logic to library #2

Merged
merged 8 commits into from
Jan 15, 2016
Merged
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
4 changes: 4 additions & 0 deletions .coveragerc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
[run]
branch = True
include =
s3transfer/*
42 changes: 42 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
*.py[co]
*.DS_Store

# Packages
*.egg
*.egg-info
dist
build
eggs
parts
var
sdist
develop-eggs
.installed.cfg

# Installer logs
pip-log.txt

# Unit test / coverage reports
.coverage
.tox
.cache

#Translations
*.mo

#Mr Developer
.mr.developer.cfg

# Emacs backup files
*~

# Eclipse IDE
/.project
/.pydevproject

# IDEA IDE
.idea*
src/

# Completions Index
completions.idx
11 changes: 11 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
language: python
python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
- "3.5"
sudo: false
install:
- python scripts/ci/install
script: python scripts/ci/run-tests
7 changes: 7 additions & 0 deletions requirements-test.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
-e git://github.com/boto/botocore.git@develop#egg=botocore
nose==1.3.3
mock==1.3.0
wheel==0.24.0
# Note you need at least pip --version of 6.0 or
# higher to be able to pick on these version specifiers.
unittest2==0.5.1; python_version == '2.6'
Loading