File: tox.ini

package info (click to toggle)
heat-tempest-plugin 2.7.0-2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 600 kB
  • sloc: python: 4,592; makefile: 22
file content (34 lines) | stat: -rw-r--r-- 659 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
[tox]
envlist = py3,pep8
minversion = 3.18.0
skipsdist = True

[testenv]
userdevelop = True
deps = -r{toxinidir}/requirements.txt
       -r{toxinidir}/test-requirements.txt
commands = stestr run --slowest {posargs}

[testenv:pep8]
setenv =
    PYTHONPATH = .
commands =
    flake8
    check-uuid --package heat_tempest_plugin

[testenv:uuidgen]
setenv =
    PYTHONPATH = .
commands =
    check-uuid --fix --package heat_tempest_plugin

[testenv:venv]
commands = {posargs}

[flake8]
show-source = True
builtins = _
# W504 line break after binary operator
# E741 ambiguous variable name 'l'
ignore = W504,E741
exclude=.venv,.git,.tox,*lib/python*,private,.eggs