From 551c7c55101c5a7303f2c4d5b7ff489573d10a58 Mon Sep 17 00:00:00 2001 From: Pierrick C Date: Sun, 16 Jun 2019 19:07:02 +0200 Subject: [PATCH] Fix module name in travis config --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 56c393b..a4a9cf2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -42,7 +42,7 @@ install: - pip install --force-reinstall pylint==1.9.2 script: - - pylint circuitpython_neotrellism4.py + - pylint neotrellism4.py - ([[ ! -d "examples" ]] || pylint --disable=missing-docstring,invalid-name,bad-whitespace examples/*.py) - - circuitpython-build-bundles --filename_prefix circuitpython-circuitpython-neotrellism4 --library_location . + - circuitpython-build-bundles --filename_prefix circuitpython-neotrellism4 --library_location . - cd docs && sphinx-build -E -W -b html . _build/html && cd ..