sprockets.clients.dynamodb/.travis.yml

15 lines
232 B
YAML
Raw Permalink Normal View History

2016-02-25 16:49:53 +00:00
language: python
python:
- 2.7
- 3.4
- 3.5
before_install:
- pip install nose coverage codecov
- pip install -r requires/testing.txt
install:
- pip install -e .
script: nosetests --with-coverage
after_success:
- codecov
sudo: false