Files
vk-url-scraper/Makefile
msramalho e525ff24b1 lint
2024-01-23 12:45:45 +00:00

17 lines
341 B
Makefile

.PHONY : docs
docs :
rm -rf docs/build/
sphinx-autobuild -b html --watch vk_url_scraper/ docs/source/ docs/build/
.PHONY : run-checks
run-checks :
# do with --check to not change files
# isort --check .
# black --check .
# do like this to fix files
isort .
black .
flake8 .
mypy .
CUDA_VISIBLE_DEVICES='' pytest -v --color=yes .