Skip to content

Commit

Permalink
update 'contributing' guide
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel.eades committed Aug 24, 2024
1 parent 1996645 commit 9e707a0
Showing 1 changed file with 20 additions and 30 deletions.
50 changes: 20 additions & 30 deletions doc/internals/contributing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -93,17 +93,22 @@ These are the basic steps needed to start developing on Sphinx.
git clone https://github.com/<USERNAME>/sphinx
cd sphinx
#. Setup a virtual environment.
#. Install the [UV package manager](https://docs.astral.sh/uv/).

This is not necessary for unit testing, thanks to :program:`tox`,
but it is necessary if you wish to run :program:`sphinx-build` locally
or run unit tests without the help of :program:`tox`:
See <https://docs.astral.sh/uv/getting-started/installation/>

.. code-block:: shell
UV will manage your development environment for you. You can run commands inside your development environment by prefixing them with `uv run`.

See the [UV documentation](https://docs.astral.sh/uv/guides/) for more tips.

.. tip::

You can avoid prefixing with `uv run` by 'activating' your virtual environment:

virtualenv ~/.venv
. ~/.venv/bin/activate
pip install -e .
.. code-block:: shell
uv sync # create the virtualenv (if it doesn't already exist)
. ./.venv/bin/activate
#. Create a new working branch. Choose any name you like.

Expand Down Expand Up @@ -167,8 +172,8 @@ Style and type checks can be run as follows:

.. code-block:: shell
ruff check .
mypy
uv run ruff check .
uv run mypy
Unit tests
Expand All @@ -179,33 +184,18 @@ Sphinx is tested using pytest_ for Python code and Jasmine_ for JavaScript.
.. _pytest: https://docs.pytest.org/en/latest/
.. _Jasmine: https://jasmine.github.io/

To run Python unit tests, we recommend using :program:`tox`, which provides a number
of targets and allows testing against multiple different Python environments:

* To list all possible targets:

.. code-block:: shell
tox -av
* To run unit tests for a specific Python version, such as Python 3.12:

.. code-block:: shell
tox -e py312
uv run --python 3.12 pytest
* Arguments to :program:`pytest` can be passed via :program:`tox`,
* Arguments to :program:`pytest` can be passed,
e.g., in order to run a particular test:

.. code-block:: shell
tox -e py312 tests/test_module.py::test_new_feature
You can also test by installing dependencies in your local environment:

.. code-block:: shell
pip install .[test]
uv run pytest tests/test_module.py::test_new_feature
To run JavaScript tests, use :program:`npm`:

Expand Down Expand Up @@ -263,7 +253,7 @@ To build the documentation, run the following command:

.. code-block:: shell
sphinx-build -M html ./doc ./build/sphinx --fail-on-warning
uv run sphinx-build -M html ./doc ./build/sphinx --fail-on-warning
This will parse the Sphinx documentation's source files and generate HTML for
you to preview in :file:`build/sphinx/html`.
Expand All @@ -274,7 +264,7 @@ edits. To do so, run the following command:

.. code-block:: shell
sphinx-autobuild ./doc ./build/sphinx/
uv run sphinx-autobuild ./doc ./build/sphinx/
Translations
Expand Down

0 comments on commit 9e707a0

Please sign in to comment.