Files
vk-url-scraper/Makefile
2022-06-17 19:15:20 +02:00

13 lines
290 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 :
isort --check .
black --check .
flake8 .
mypy .
CUDA_VISIBLE_DEVICES='' pytest -v --color=yes --doctest-modules tests/ vk_url_scraper/