1
0
Fork 0
mirror of synced 2024-06-02 10:24:39 +12:00
bulk-downloader-for-reddit/tox.ini
2022-12-03 16:34:23 +10:00

30 lines
475 B
INI

[tox]
envlist =
format
format_check
[testenv:format]
deps =
isort
black
skip_install = True
commands =
isort bdfr tests
black bdfr tests --line-length 120
[testenv:format_check]
deps =
isort
black
skip_install = True
allowlist_externals = mdl
commands =
isort bdfr tests --check
black bdfr tests --line-length 120 --check
mdl README.md docs/ -s .markdown_style.rb
[isort]
profile = black
multi_line_output = 3
line_length = 120