docker build: Update saltstack repo URL, locale
[fuel.git] / tox.ini
1 ##############################################################################
2 # Copyright (c) 2018 Linux Foundation and others.
3 # All rights reserved. This program and the accompanying materials
4 # are made available under the terms of the Apache License, Version 2.0
5 # which accompanies this distribution, and is available at
6 # http://www.apache.org/licenses/LICENSE-2.0
7 ##############################################################################
8 [tox]
9 minversion = 1.6
10 envlist =
11     docs,
12     docs-linkcheck
13 skipsdist = true
14
15 [testenv:docs]
16 basepython = python3
17 deps = -rdocs/requirements.txt
18 commands =
19     sphinx-build -b html -n -d {envtmpdir}/doctrees ./docs/ {toxinidir}/docs/_build/html
20     echo "Generated docs available in {toxinidir}/docs/_build/html"
21 whitelist_externals = echo
22
23 [testenv:docs-linkcheck]
24 basepython = python3
25 deps = -rdocs/requirements.txt
26 commands = sphinx-build -b linkcheck -d {envtmpdir}/doctrees ./docs/ {toxinidir}/docs/_build/linkcheck