Remove another unnecessary wrapper

This commit is contained in:
Hugo Osvaldo Barrera 2023-01-31 00:56:25 +01:00
parent 3a56f26d05
commit 72bcef282d
2 changed files with 3 additions and 6 deletions

View file

@ -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

View file

@ -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