Files
vk-url-scraper/Makefile
msramalho 187cfa83c8 docs
2022-06-18 00:11:24 +02:00

17 lines
380 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 --doctest-modules tests/ vk_url_scraper/