sprockets.http/.travis.yml
Dave Shawley 0730428069 Enable uploading docs to pythonhosted.org.
If this works, then consider ditching readthedocs.org since there is no
way to downgrade the sphinx version there /sigh
2018-01-03 13:19:28 -05:00

26 lines
599 B
YAML

language: python
python:
- 2.7
- 3.4
- 3.5
before_install:
- pip install nose coverage codecov
- pip install -r requires/development.txt
install:
- pip install -e .
script:
- nosetests --with-coverage
- ./setup.py build_sphinx
after_success:
- codecov
sudo: false
deploy:
distributions: sdist bdist_wheel
provider: pypi
user: sprockets
password:
secure: ARvFw5CHqQZqPOkJXxQSe7EAEbX1yt7FiBTtzz8Gd6XndbY10HVCSWhGYeldm9LevvQc9p77pBEvsl+bXGQbJ3NW/r/U5PADaFdmi4bxmXN8yc+dFKzn72MpZfL+kCV2T/HutuOY6dQa4okTkKVV+sqwPLKPhL69zH/PxQg8qe4=
on:
python: 3.4
tags: true
all_branches: true