mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-04-27 14:57:41 +00:00
Remove another unnecessary wrapper
This commit is contained in:
parent
3a56f26d05
commit
72bcef282d
2 changed files with 3 additions and 6 deletions
4
Makefile
4
Makefile
|
|
@ -43,10 +43,6 @@ ci-test-storage:
|
||||||
install-docs:
|
install-docs:
|
||||||
pip install -Ur docs-requirements.txt
|
pip install -Ur docs-requirements.txt
|
||||||
|
|
||||||
docs:
|
|
||||||
cd docs && make html
|
|
||||||
sphinx-build -W -b linkcheck ./docs/ ./docs/_build/linkcheck/
|
|
||||||
|
|
||||||
release-deb:
|
release-deb:
|
||||||
sh scripts/release-deb.sh debian jessie
|
sh scripts/release-deb.sh debian jessie
|
||||||
sh scripts/release-deb.sh debian stretch
|
sh scripts/release-deb.sh debian stretch
|
||||||
|
|
|
||||||
|
|
@ -91,7 +91,8 @@ Then you can run::
|
||||||
|
|
||||||
pytest # The normal testsuite
|
pytest # The normal testsuite
|
||||||
pre-commit run --all # Run all linters (which also run via pre-commit)
|
pre-commit run --all # Run all linters (which also run via pre-commit)
|
||||||
make docs # Build the HTML docs, output is at docs/_build/html/
|
make -C docs html # Build the HTML docs, output is at docs/_build/html/
|
||||||
|
make -C docs linkcheck # Check docs for any broken links
|
||||||
|
|
||||||
The ``Makefile`` has a lot of options that allow you to control which tests are
|
The ``Makefile`` has a lot of options that allow you to control which tests are
|
||||||
run, and which servers are tested. Take a look at its code where they are all
|
run, and which servers are tested. Take a look at its code where they are all
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue