From 24ad2c340298bf1b560fc60b852fbefb404237e7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gustav=20N=C3=A4slund?= Date: Thu, 26 Apr 2018 22:31:04 +0200 Subject: [PATCH] Dont install freecad-doc in the Travis build The freecad-doc package download weighs in at about 150 MB and adds several minutes to the travis build time for no purpose. --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index d61778e..12fc32b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -19,7 +19,7 @@ before_install: else sudo add-apt-repository -y ppa:freecad-maintainers/freecad-stable; sudo apt-get update -qq; - sudo apt-get install -y freecad freecad-doc; + sudo apt-get install -y freecad; pip install -r requirements-dev.txt; pip install travis-sphinx; pip install sphinx_rtd_theme;