-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathtox.ini
More file actions
37 lines (32 loc) · 746 Bytes
/
tox.ini
File metadata and controls
37 lines (32 loc) · 746 Bytes
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
34
35
36
37
[tox]
envlist = py{3.8, 3.9, 3.10, 3.11, 3.12, py3.10}, linting
isolated_build = True
[testenv]
setenv =
PYTHONDONTWRITEBYTECODE=1
deps =
pytest
hjson
PyYAML
toml
commands = pytest -s -ra --color=yes {posargs}
[testenv:linting]
skip_install = True
basepython = python3
deps = pre-commit
commands = pre-commit run --all-files --show-diff-on-failure
[testenv:devel]
description = Tests with unreleased deps
basepython = python3
pip_pre = True
deps =
{[testenv]deps}
pytest @ git+https://github.com/pytest-dev/pytest.git
[flake8]
max-line-length = 120
exclude = .eggs,.tox
# rationale here:
# https://github.com/psf/black/blob/master/docs/the_black_code_style.md#slices
extend-ignore = E203
[pytest]
testpaths = tests