~hloeung/ubuntu-repository-cache/logging-ubuntu_active-plus-keeps

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
[tox]
envlist = lint,py3
skipsdist = True

[testenv]
basepython = python3
setenv =
  PYTHONPATH = .

[testenv:unit]
commands =
    pytest --ignore {toxinidir}/tests/functional \
      {posargs:-v  --cov=lib --cov=reactive --cov-report=term-missing --cov-branch}
deps = -r{toxinidir}/tests/unit/requirements.txt
       -r{toxinidir}/requirements.txt
setenv =
  PYTHONPATH={toxinidir}/lib
  TZ=UTC

[testenv:black]
commands = black --skip-string-normalization --line-length=120 .
deps = black

[testenv:lint]
deps=
    flake8
commands=
    flake8

[flake8]
exclude =
    .bzr,
    __pycache__,
    .tox,
max-line-length = 120
max-complexity = 14