mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-03-25 08:55:50 +00:00
21 lines
311 B
Makefile
21 lines
311 B
Makefile
install-test:
|
|
sh build.sh install_tests
|
|
|
|
test:
|
|
sh build.sh tests
|
|
|
|
install-style:
|
|
pip install flake8 flake8-import-order
|
|
|
|
style:
|
|
flake8 \
|
|
--ignore=W503 # Line break before operator
|
|
! grep -ri syncroniz */*
|
|
|
|
install-docs:
|
|
pip install sphinx sphinx_rtd_theme
|
|
pip install -e .
|
|
|
|
docs:
|
|
cd docs
|
|
make html
|