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

28 lines
403 B
INI
Raw Normal View History

2022-12-03 18:04:02 +13:00
[tox]
envlist =
format
2022-12-03 18:28:53 +13:00
format_check
2022-12-03 18:04:02 +13:00
[testenv:format]
deps =
isort
black
skip_install = True
commands =
isort bdfr tests
black bdfr tests --line-length 120
2022-12-03 18:28:53 +13:00
[testenv:format_check]
deps =
isort
black
skip_install = True
commands =
isort bdfr tests --check
black bdfr tests --line-length 120 --check
2022-12-03 18:04:02 +13:00
[isort]
profile = black
2022-12-03 18:20:03 +13:00
multi_line_output = 3
line_length = 120