mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-03-25 08:55:50 +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:
|
||||
pip install -Ur docs-requirements.txt
|
||||
|
||||
docs:
|
||||
cd docs && make html
|
||||
sphinx-build -W -b linkcheck ./docs/ ./docs/_build/linkcheck/
|
||||
|
||||
release-deb:
|
||||
sh scripts/release-deb.sh debian jessie
|
||||
sh scripts/release-deb.sh debian stretch
|
||||
|
|
|
|||
|
|
@ -89,9 +89,10 @@ virtualenv_ and run this inside of it::
|
|||
|
||||
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)
|
||||
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
|
||||
run, and which servers are tested. Take a look at its code where they are all
|
||||
|
|
|
|||
Loading…
Reference in a new issue