1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
# Authors:
# Christian Heimes <cheimes@redhat.com>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; version 2 of the License.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Copyright (C) 2015 Red Hat, Inc.
# All rights reserved.
#
[tox]
envlist = py27,lint,docs
[testenv]
# force installation of sphinx and lint in virtual env, otherwise
# the command pick up the `pki` package from the system's site packages.
install_command = pip install {opts} --force-reinstall --upgrade {packages}
[testenv:py27]
sitepackages = True
commands =
python2.7 {envbindir}/pkidestroy --help
python2.7 {envbindir}/pkispawn --help
python2.7 {envbindir}/pki-server --help
python2.7 {envbindir}/pki-server-upgrade --help
python2.7 {envbindir}/pki-upgrade --help
[testenv:lint]
basepython = python2.7
sitepackages = True
deps =
pylint
commands =
pylint \
{envsitepackagesdir}/pki \
{envbindir}/pkidestroy \
{envbindir}/pkispawn \
{envbindir}/pki-server \
{envbindir}/pki-server-upgrade \
{envbindir}/pki-upgrade \
{envbindir}/pki \
--rcfile={toxinidir}/dogtag.pylintrc \
{posargs}
[testenv:pep8]
basepython = python2.7
sitepackages = False
deps =
flake8
# flake8-import-order
pep8-naming
commands =
flake8 {posargs}
[testenv:docs]
basepython = python2.7
sitepackages = True
changedir = base/common/python
deps =
sphinx < 1.3.0
commands =
sphinx-build -v -W -b html -d {envtmpdir}/doctrees . {envtmpdir}/html
[flake8]
exclude = .tox,*.egg,dist,build,conf.py,tests/*
include = *.py,pki-upgrade,pkidestroy,pki-server,pki-server-upgrade,pkispawn,pki
show-source = true
max-line-length = 99
application-import-names = pki
|