@@ -30,7 +30,7 @@ alongside the dependencies with:
3030
3131.. code :: sh
3232
33- $ pdm install
33+ pdm install
3434
3535 This will create a virtual environment and install all the dependencies listed in the *pyproject.toml * file.
3636Now, every change you make to the Python code will be directly reflected when running *itzi * from the command line or the tests.
@@ -40,7 +40,7 @@ If so, install `uv <https://docs.astral.sh/uv/>`__ and set pdm to use it:
4040
4141.. code :: sh
4242
43- $ pdm config use_uv true
43+ pdm config use_uv true
4444
4545
4646 Cython code
@@ -52,8 +52,8 @@ you can do so by running the following command in the root directory of the repo
5252
5353.. code :: sh
5454
55- $ cython -3 src/itzi/flow.pyx
56- $ pdm install
55+ cython -3 src/itzi/flow.pyx
56+ pdm install
5757
5858
5959 Testing
@@ -65,13 +65,13 @@ the tests must be run in separate processes using *pytest-forked*.
6565
6666.. code :: sh
6767
68- $ pdm run pytest --forked -v
68+ pdm run pytest --forked -v
6969
7070 To estimate the test coverage:
7171
7272.. code :: sh
7373
74- $ pdm run pytest --cov=itzi --forked -v
74+ pdm run pytest --cov=itzi --forked -v
7575
7676 Select the python version to test against with *pdm use *.
7777Test against the 3 `last versions of python <https://devguide.python.org/versions/ >`__.
@@ -96,12 +96,12 @@ Then you can build the documentation locally:
9696
9797.. code :: sh
9898
99- $ cd docs
100- $ sphinx-build . _build
99+ cd docs
100+ sphinx-build . _build
101101
102102
103103 Continuous integration
104- ----------------
104+ ----------------------
105105
106106Tests are automatically run with GitHub Actions.
107107Before committing changes to the workflows, test them locally using `act <https://nektosact.com/ >`__.
0 commit comments