From 65e02b565e93f91ce2850136f84da3802657671c Mon Sep 17 00:00:00 2001 From: Brennen Bearnes Date: Fri, 21 Dec 2018 12:45:20 -0700 Subject: [PATCH] travis: correct source path --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 15fab9c..c9ee134 100755 --- a/.travis.yml +++ b/.travis.yml @@ -22,6 +22,6 @@ install: - pip install circuitpython-build-tools Sphinx sphinx-rtd-theme script: - - pylint src/**/*.py + - pylint adafruit_platformdetect/**/*.py - ([[ ! -d "examples" ]] || pylint --disable=missing-docstring,invalid-name,bad-whitespace examples/*.py) - cd docs && sphinx-build -E -W -b html . _build/html && cd ..