mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-03-25 08:55:50 +00:00
23 lines
404 B
Makefile
23 lines
404 B
Makefile
install-test:
|
|
sh build.sh install_tests
|
|
|
|
test:
|
|
sh build.sh tests
|
|
|
|
install-style:
|
|
pip install flake8 flake8-import-order sphinx
|
|
pip install -e .
|
|
|
|
style:
|
|
flake8
|
|
! grep -ri syncroniz */*
|
|
sphinx-build -W -b html ./docs/ ./docs/_build/html/
|
|
sphinx-build -W -b linkcheck ./docs/ ./docs/_build/linkcheck/
|
|
|
|
install-docs:
|
|
pip install sphinx sphinx_rtd_theme
|
|
pip install -e .
|
|
|
|
docs:
|
|
cd docs
|
|
make html
|