From 9fa1727e2a9bdca5b2bc0cb4e43eba3763c034a3 Mon Sep 17 00:00:00 2001 From: Levente Pap Date: Thu, 14 Nov 2019 10:03:51 +0100 Subject: [PATCH] Add docs build step to Travis CI --- .travis.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 029d833d..33763b03 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,11 +5,12 @@ python: - '3.6' - '3.7' install: - - pip install . + - pip install .[docs-builder] - pip install docutils pygments # Used to check package metadata. script: - python setup.py check --strict --metadata --restructuredtext - nosetests + - cd docs && make html && cd .. # Build documentation. deploy: on: python: '3.7'