From 69a6eeb7bb0af2e422c7bf9db3f3d59627eb25d5 Mon Sep 17 00:00:00 2001 From: Lucas Bickel Date: Sat, 4 Mar 2017 16:40:23 +0100 Subject: [PATCH] Build docs from conditional python script --- .travis.yml | 1 - travis/python.sh | 4 ++++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index be7aed736..e8dfecdf9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -70,7 +70,6 @@ before_script: script: - ./travis/php.sh - ./travis/python.sh -- mkdocs build --clean -q > /dev/null deploy: provider: pages skip_cleanup: true diff --git a/travis/python.sh b/travis/python.sh index 2c61e0c3a..27e4441f2 100755 --- a/travis/python.sh +++ b/travis/python.sh @@ -8,3 +8,7 @@ pushd python_apps/airtime_analyzer nosetests -a '!rgain' echo "replaygain tests where skipped due to not having a reliable replaygain install on travis." popd + +echo "Building docs..." +mkdocs build --clean -q > /dev/null +echo -n "done"