From 26e4121e401b75bd033ef8e054fdede4e8ec40c8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcus=20Sch=C3=A4fer?= Date: Tue, 6 Nov 2018 10:09:44 +0100 Subject: [PATCH] Bypass Jekyll processing for github pages sphinx uses directories that start with underscores which Jekyll considers these to be special resources and does not copy them to the final site. --- tox.ini | 1 + 1 file changed, 1 insertion(+) diff --git a/tox.ini b/tox.ini index 9ab7474e..329a23d5 100644 --- a/tox.ini +++ b/tox.ini @@ -132,6 +132,7 @@ deps = {[testenv:doc]deps} changedir=doc commands = travis-sphinx --outdir build_travis build --nowarn --source ./source + bash -c 'touch ./build_travis/.nojekyll' bash -c 'cp -a ./source/development/schema/images ./build_travis/development'