aboutsummaryrefslogtreecommitdiff
blob: 23c533c3456bdee57ddd746e654d39e29ef9a366 (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
[tox]
envlist = py{39,310,311,312,313}-{pylint,test},pypy3-test
skipsdist = True

[gh-actions]
python =
	3.9: py39
	3.10: py310
	3.11: py311
	3.12: py312
	3.13: py313
	pypy-3: pypy3

[gh-actions:env]
TARGET =
	pylint: pylint
	test: test

[testenv]
deps =
	setuptools
	pylint: pylint
	pylint: pytest
	test: pyyaml
	test: pytest
	test: pytest-xdist
setenv =
	PYTHONPATH={toxinidir}/lib
allowlist_externals =
	./run-pylint
commands =
	pylint: ./run-pylint
	test: pytest -vv -ra -l -o console_output_style=count -n auto --dist=worksteal {posargs}