blob: e7c5657b40d28d21c7eb9767166d7e31fc101828 (
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
|
[tox]
skipsdist = True
toxworkdir={homedir}/tmp/.tox
[testenv]
basepython = python3
[testenv:black]
description = auto formatter with black
deps = black
commands = black .
[testenv:ruff]
description = lint with ruff
deps = ruff
commands = ruff check --exclude tmp
[testenv:flake8]
description = lint with flake8
deps = flake8
commands = flake8 --max-line-length=88 --exclude tmp
[testenv:qolab_pytest]
description = test cases
usedevelop = True
deps = pytest
commands = pytest
|