aboutsummaryrefslogtreecommitdiffstats
path: root/tox.ini
blob: 44649873e7aad1f6d3081b13d1fdb427aede8418 (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
[tox]
envlist = pep8,yamllint,bashate
skipsdist = true

[testenv]
deps =
  -r{toxinidir}/requirements.txt
  -r{toxinidir}/test-requirements.txt

[testenv:pep8]
basepython = python3
commands = flake8

[testenv:yamllint]
basepython = python3
files =
  INFO.yaml
  tools
commands =
  yamllint -s {[testenv:yamllint]files} -c {toxinidir}/yamllintrc

[testenv:bashate]
basepython = python3
files =
  ci/build-cirv.sh
commands = bashate -e E005,E006,E042,E043 {[testenv:bashate]files}