language: python
python:
  - "2.6"
  - "2.7"
  - "3.4"
  - "3.5.0b3"
  - "3.5-dev"
sudo: false
# command to install dependencies
before_install:
  - mkdir $HOME/.aws
  - cp ./tests/config $HOME/.aws
cache:
  directories:
    - $HOME/.cache/pip
install: 
  - pip install pip --upgrade
  - pip install -r requirements/development.txt
  - pip install codecov
  - pip install -e .
# command to run tests
script: py.test -v tests jungle
# for coverage
after_success:
  - codecov
