mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-04-27 14:57:41 +00:00
Drop unnecessary wrapping
This commit is contained in:
parent
4dd17c7f59
commit
3a56f26d05
2 changed files with 1 additions and 5 deletions
4
Makefile
4
Makefile
|
|
@ -40,10 +40,6 @@ ci-test-storage:
|
||||||
done
|
done
|
||||||
bash $(CODECOV_PATH) -c
|
bash $(CODECOV_PATH) -c
|
||||||
|
|
||||||
style:
|
|
||||||
pre-commit run --all
|
|
||||||
sphinx-build -W -b html ./docs/ ./docs/_build/html/
|
|
||||||
|
|
||||||
install-docs:
|
install-docs:
|
||||||
pip install -Ur docs-requirements.txt
|
pip install -Ur docs-requirements.txt
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -90,7 +90,7 @@ virtualenv_ and run this inside of it::
|
||||||
Then you can run::
|
Then you can run::
|
||||||
|
|
||||||
pytest # The normal testsuite
|
pytest # The normal testsuite
|
||||||
make style # Stylechecker
|
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 docs # Build the HTML docs, output is at docs/_build/html/
|
||||||
|
|
||||||
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
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue