File: tox.ini

package info (click to toggle)
python-monascaclient 2.8.0-4
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 484 kB
  • sloc: python: 2,487; sh: 111; makefile: 21
file content (99 lines) | stat: -rw-r--r-- 2,596 bytes parent folder | download | duplicates (2)
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
[tox]
envlist = py38,pypy,cover,pep8
minversion = 3.1.1
skipsdist = True
ignore_basepython_conflict = True

[testenv]
basepython = python3
setenv =
    VIRTUAL_ENV={envdir}
    OS_TEST_PATH=monascaclient/tests
    PYTHONWARNINGS=default::DeprecationWarning
passenv = *_proxy
          *_PROXY
usedevelop = True
install_command = pip install {opts} {packages}
deps =
  -c{env:UPPER_CONSTRAINTS_FILE:https://releases.openstack.org/constraints/upper/master}
  -r{toxinidir}/test-requirements.txt
  -r{toxinidir}/requirements.txt
whitelist_externals = bash
                      find
                      rm
commands =
  find {toxinidir} -type f -name "*.pyc" -delete
  stestr run {posargs}

[testenv:cover]
setenv =
    PYTHON=coverage run --source monascaclient --parallel-mode
commands =
    coverage erase
    stestr run {posargs}
    coverage combine
    coverage html -d cover
    coverage xml -o cover/coverage.xml
    coverage report

[testenv:debug]
commands = oslo_debug_helper -t {env:OS_TEST_PATH} {posargs}

[testenv:pep8]
skip_install = True
usedevelop = False
commands =
  {[testenv:flake8]commands}
  {[testenv:bandit]commands}
  {[testenv:checkniceness]commands}

[testenv:flake8]
skip_install = True
usedevelop = False
commands = flake8 monascaclient

[testenv:bandit]
skip_install = True
usedevelop = False
commands = bandit -r monascaclient -n5 -x {env:OS_TEST_PATH}

[testenv:docs]
deps = -c{env:TOX_CONSTRAINTS_FILE:https://releases.openstack.org/constraints/upper/master}
       -r{toxinidir}/doc/requirements.txt
description = Builds full monascaclient documentation
commands =
  {[testenv:devdocs]commands}
  {[testenv:releasenotes]commands}

[testenv:devdocs]
deps = {[testenv:docs]deps}
description = Builds developer documentation
commands =
  rm -rf {toxinidir}/doc/build {toxinidir}/doc/source/contributor/api
  sphinx-build -a -W -b html doc/source doc/build/html

[testenv:releasenotes]
deps = {[testenv:docs]deps}
description = Called from CI script to test and publish the Release Notes
commands =
  rm -rf releasenotes/build
  sphinx-build -a -W -E -d {toxinidir}/releasenotes/build/doctrees -b html \
    {toxinidir}/releasenotes/source {toxinidir}/releasenotes/build/html

[testenv:checkniceness]
description = Validates (pep-like) documenation
commands =
  doc8 --file-encoding utf-8 {toxinidir}/doc
  doc8 --file-encoding utf-8 {toxinidir}/releasenotes

[testenv:venv]
commands = {posargs}

[hacking]
import_exceptions =

[flake8]
show-source = True
max-line-length = 100
builtins = _
exclude=.venv,.git,.tox,dist,client_api_example.py,*lib/python*,*egg,build