aboutsummaryrefslogtreecommitdiff
path: root/tox.ini
blob: f45ed53a49bd60507132e04794f3add9620d7de6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[tox]
skipsdist = True

[testenv]
basepython = python3

[testenv:flake8]
description = lint with flake8
deps = flake8
commands = flake8 --max-line-length=88

[testenv:black]
description = auto formatter with black
deps = black
commands = black .

[testenv:pytest]
description = test cases
usedevelop = True
deps = pytest
commands = pytest