cookiecutter-sprockets/sprockets.{{cookiecutter.project_name}}/.travis.yml
Gavin M. Roy 9a9b375d30 Minor updates
- Add a .editorconfig file (See http://editorconfig.org)
- Add wheel distribution
- Remove sprockets requirement
2014-10-16 10:15:19 -04:00

27 lines
458 B
YAML

%YAML 1.1
---
language: python
python:
- 2.6
- 2.7
- pypy
- 3.2
- 3.3
- 3.4
install:
- if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then pip install unittest2; fi
- pip install -r test-requirements.txt
- pip install -e .
script: nosetests
after_success:
- coveralls
deploy:
distributions: sdist bdist_wheel
provider: pypi
on:
python: 2.7
tags: true
all_branches: true
user: sprockets
password:
secure: [REPLACE-ME]