mirror of
https://github.com/bellingcat/vk-url-scraper.git
synced 2026-06-08 03:18:37 +03:00
13 lines
290 B
Makefile
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/
|