mirror of
https://github.com/sprockets/cookiecutter-sprockets.git
synced 2024-11-15 03:00:23 +00:00
9b8049d8a5
- Speed up travis testing - Fix typo in index.rst - Add sprockets to requirements.txt - Remove version importing in setup.py
25 lines
346 B
YAML
25 lines
346 B
YAML
%YAML 1.1
|
|
---
|
|
language: python
|
|
python:
|
|
- 2.6
|
|
- 2.7
|
|
- pypy
|
|
- 3.2
|
|
- 3.3
|
|
- 3.4
|
|
install:
|
|
- pip install -r test-requirements.txt
|
|
- pip install -e .
|
|
script: nosetests
|
|
after_success:
|
|
- coveralls
|
|
deploy:
|
|
provider: pypi
|
|
user: sprockets
|
|
on:
|
|
python: 2.7
|
|
tags: true
|
|
all_branches: true
|
|
password:
|
|
secure: [REPLACE-ME]
|