Fix: remove import cycles from `config.py`
[deliverable/barectf.git] / tox.ini
... / ...
CommitLineData
1[tox]
2minversion = 3.3
3isolated_build = true
4envlist = tests
5skipsdist = True
6
7[testenv]
8whitelist_externals = poetry
9passenv = TERM TERMINFO
10
11[testenv:tests]
12changedir = tests
13commands =
14 poetry install -v
15 poetry run bash ./test.bash -t
16
17[testenv:flake8]
18deps = flake8 >= 2.5
19commands = flake8 barectf
20
21[flake8]
22# E123, E125 skipped as they are invalid PEP-8.
23# also ignore E501 because barectf has very long lines
24show-source = True
25ignore = E123,E125,E501
26builtins = _
27exclude=.venv,.git,.tox,dist,doc,*lib/python*,*egg,build,templates.py
28
29[testenv:pylint]
30deps = pylint >= 1.6
31commands =
32 poetry install -v
33 poetry run pylint -f colorized -d all -e E,W -d W0212,W1618,W0622,W0201,W0703 barectf
This page took 0.021946 seconds and 4 git commands to generate.