-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.cfg
67 lines (61 loc) · 1 KB
/
setup.cfg
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
[flake8]
max-line-length = 127
ignore =
E221,
E241,
F401,
E501
[pylint.DESIGN]
disable = too-few-public-methods
max-attributes = 16
[tox:tox]
min_version = 4.0
no_package = true
skipsdist = true
env_list =
py38
py39
py310
py311
py312
flake8
yamllint
[testenv]
deps =
flake8
flake8-annotations
flake8-annotations-complexity
flake8-bugbear
flake8-deprecated
flake8-docstrings>=1.3.1
flake8-typing-imports>=1.1
; flake8-todo
; flake8-black
flake8-isort
flake8-print
; flake8-pylint
flake8-builtins
flake8-pytest-style
pep8-naming
pytest>=7,<8
yamllint
commands = pytest tests
[testenv:flake8]
basepython = python3.12
skip_install = true
commands =
flake8 --doctests tests/ m6502/
[testenv:yamllint]
basepython = python3.12
skip_install = true
commands =
yamllint . --format github
[gh]
python =
3.6 = py36
3.7 = py37
3.8 = py38
3.9 = py39
3.10 = py310
3.11 = py311
3.12 = py312