mirror of
https://github.com/bellingcat/vk-url-scraper.git
synced 2026-06-07 19:08:38 +03:00
17 lines
341 B
Makefile
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 .
|