updated .travis & .readthedocs yml

This commit is contained in:
sommersoft 2018-02-24 20:26:40 -06:00
parent 3d40f99b45
commit 25f5ec9807
2 changed files with 4 additions and 2 deletions

View file

@ -16,15 +16,17 @@ deploy:
provider: releases provider: releases
api_key: $GITHUB_TOKEN api_key: $GITHUB_TOKEN
file_glob: true file_glob: true
file: bundles/* file: $TRAVIS_BUILD_DIR/bundles/*
skip_cleanup: true skip_cleanup: true
overwrite: true
on: on:
tags: true tags: true
install: install:
- pip install pylint circuitpython-travis-build-tools - pip install pylint circuitpython-build-tools Sphinx sphinx-rtd-theme
script: script:
- pylint adafruit_dotstar.py - pylint adafruit_dotstar.py
- ([[ ! -d "examples" ]] || pylint --disable=missing-docstring,invalid-name examples/*.py) - ([[ ! -d "examples" ]] || pylint --disable=missing-docstring,invalid-name examples/*.py)
- circuitpython-build-bundles --filename_prefix adafruit-circuitpython-dotstar --library_location . - circuitpython-build-bundles --filename_prefix adafruit-circuitpython-dotstar --library_location .
- cd docs && sphinx-build -E -W -b html . _build/html