Files
vk-url-scraper/Makefile
Miguel Sozinho Ramalho b3c7ac8e5d Initial commit
2022-06-17 13:25:27 +01:00

13 lines
282 B
Makefile

.PHONY : docs
docs :
rm -rf docs/build/
sphinx-autobuild -b html --watch my_package/ 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/ my_package/