fix the broken links in development.md
[ovn4nfv-k8s-plugin.git] / tox.ini
1 # SPDX-license-identifier: Apache-2.0
2 ##############################################################################
3 # Copyright (c) 2018
4 # All rights reserved. This program and the accompanying materials
5 # are made available under the terms of the Apache License, Version 2.0
6 # which accompanies this distribution, and is available at
7 # http://www.apache.org/licenses/LICENSE-2.0
8 ##############################################################################
9
10 [tox]
11 minversion = 1.6
12 skipsdist = True
13 envlist = checker
14
15 [testenv]
16 passenv = http_proxy HTTP_PROXY https_proxy HTTPS_PROXY no_proxy NO_PROXY
17 usedevelop = False
18 install_command = pip install {opts} {packages}
19
20 [testenv:checker]
21 deps =
22    rstcheck
23 whitelist_externals = bash
24 commands = bash -c "find {toxinidir}/ \
25    -name \*.rst -type f -print0 | xargs -0 rstcheck --report warning"