Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove make from tox config #68

Closed
5 tasks done
Assignees
Labels
🖱️ DX Improvements to the Developer Experience

Comments

@redeboer
Copy link
Member

redeboer commented May 19, 2022

The tox -e doc and related jobs currently work with make. The Makefile can instead be removed, so that the documentation is built with sphinx-build directly. E.g.:

[testenv:doc]
description =
  Build documentation with Sphinx
allowlist_externals =
  sphinx-build
changedir = docs
passenv =
  READTHEDOCS_VERSION
  TERM
commands =
  sphinx-build -nW --keep-going -b html ./ ./_build/html

Related PRs

  1. 🖱️ DX
    redeboer
  2. 🖱️ DX
    redeboer
  3. 🖱️ DX
    redeboer
  4. 🖱️ DX
    redeboer
  5. 🖱️ DX
    redeboer
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment