collection 교체

This commit is contained in:
정훈 변
2024-02-23 16:37:40 +09:00
parent b494779b5b
commit 3fd554eee9
38862 changed files with 220204 additions and 6600073 deletions

View File

@@ -10,22 +10,14 @@ deps = -r{toxinidir}/requirements.txt
[testenv:black]
install_command = pip install {opts} {packages}
commands =
black -l79 --exclude '\.git|\.mypy_cache|\.tox|tests/output' {toxinidir}
black --exclude '\.git|\.mypy_cache|\.tox|tests/output' {toxinidir}
[testenv:linters]
install_command = pip install {opts} {packages}
commands =
black -l79 --exclude '\.git|\.mypy_cache|\.tox|tests/output' --check {toxinidir}
black --exclude '\.git|\.mypy_cache|\.tox|tests/output' --check {toxinidir}
flake8 {posargs}
yamllint -s .
[testenv:venv]
commands = {posargs}
[flake8]
show-source = True
# E123, E125 skipped as they are invalid PEP-8.
ignore = E123,E125,E402,W503
max-line-length = 160
builtins = _
exclude = .git,.mypy_cache,.tox,tests/unit/compat/,tests/output/