summaryrefslogtreecommitdiff
path: root/tox.ini
blob: 0152d7bcb0690b9d3cbf7785d98a0632533bcc03 (plain)
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
[tox]
envlist = linters,docs,py3
ignore_basepython_conflict = true

[testenv]
basepython = python3
# See "testing behind a proxy" https://review.opendev.org/624496
passenv =
  http_proxy
  https_proxy
  # avoids potential slip-over of java 1.9 which breaks Gerrit, without it
  # Gerrit may start with incompatible java version.
  JAVA_HOME
  # uncomment to allow custom java options to be added
  # _JAVA_OPTIONS
  TERM
commands =
  python -m git_review.tests.check_test_id_hashes discover --list
  python -m git_review.tests.prepare
  stestr run --color {posargs}
deps =
  -r{toxinidir}/requirements.txt
  -r{toxinidir}/test-requirements.txt

[testenv:linters]
commands = flake8

[testenv:docs]
deps =
  -r{toxinidir}/requirements.txt
  -r{toxinidir}/doc/requirements.txt
commands =
  sphinx-build -W -d doc/build/doctrees -b html doc/source/ doc/build/html

[testenv:venv]
commands = {posargs}

[flake8]
ignore = E125,H202,H405,H904,W504
show-source = true
exclude = .venv,.git,.tox,dist,doc,releasenotes,*lib/python*,*egg,build