sprockets.mixins.metrics/.travis.yml

16 lines
239 B
YAML
Raw Normal View History

2016-01-18 20:32:49 +00:00
language: python
python:
- 2.7
- 3.4
- 3.5
- pypy
before_install:
- pip install nose coverage codecov
- pip install -r requires/testing.txt
install:
- pip install -e .
2016-01-19 16:14:53 +00:00
script: nosetests --with-coverage
2016-01-18 20:32:49 +00:00
after_success:
- codecov
sudo: false