From 5be488383fea8b514cedc02ec9b9031bc411107d Mon Sep 17 00:00:00 2001 From: Paul Tax Date: Mon, 24 Aug 2015 21:03:03 +0200 Subject: Add travis again --- .gitignore | 2 ++ .travis.yml | 12 ++++++++++++ README.md | 4 +++- requirements.txt | 2 -- 4 files changed, 17 insertions(+), 3 deletions(-) create mode 100644 .travis.yml delete mode 100644 requirements.txt diff --git a/.gitignore b/.gitignore index ca8b11d..0536a1d 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,6 @@ .DS_Store +dist/ +requests_aws.egg-info/ env/ *.pyc *.*~ \ No newline at end of file diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..1df5645 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,12 @@ +language: python +python: + - "2.6" + - "2.6" + - "2.7" + - "3.2" + - "3.3" + - "3.4" +install: + - pip install requests +# command to run tests, e.g. python setup.py test +script: python test.py \ No newline at end of file diff --git a/README.md b/README.md index 8bff852..98b1888 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,9 @@ AWS authentication for Amazon S3 for the wonderful [pyhon requests library](http://python-requests.org) -- Tested with python 2.6 and python 3.3.2 +[![Build Status](https://travis-ci.org/tax/python-requests-aws.svg?branch=master)](https://travis-ci.org/tax/python-requests-aws) + +- Tested with python 2.7 and python 3 - At the moment only S3 is supported ## Usage diff --git a/requirements.txt b/requirements.txt deleted file mode 100644 index 3a3a480..0000000 --- a/requirements.txt +++ /dev/null @@ -1,2 +0,0 @@ -requests==2.7.0 -wheel==0.24.0 -- cgit v1.2.1