Skip to content

Commit

Permalink
Remove leading console characters
Browse files Browse the repository at this point in the history
  • Loading branch information
JorikSchellekens committed Mar 26, 2024
1 parent 5555899 commit 1fe2b1d
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions docs/source/Installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ Development Installation

.. code-block:: console
$ git clone https://github.com/nethermindETH/starknet-abi.git
$ cd starknet-abi
$ poetry env use python3.12 # Supports any version of python >= 3.10, but 3.12 is fastest
$ poetry install --all-extras
git clone https://github.com/nethermindETH/starknet-abi.git
cd starknet-abi
poetry env use python3.12 # Supports any version of python >= 3.10, but 3.12 is fastest
poetry install --all-extras
Development Guide
Expand All @@ -26,26 +26,26 @@ Development Guide

.. code-block:: console
$ poetry run pre-commit install
$ poetry run pre-commit run --all-files
poetry run pre-commit install
poetry run pre-commit run --all-files
**Unit Testing**

.. code-block:: console
$ poetry run pytest tests/
poetry run pytest tests/
# Run only ABI Versioning Tests
$ poetry run pytest tests/test_abi_versions/
poetry run pytest tests/test_abi_versions/
**Running Doctests**

.. code-block:: console
$ poetry run pytest --doctest-modules starknet_abi/
poetry run pytest --doctest-modules starknet_abi/
**Building Documentation**

.. code-block:: console
$ poetry run sphinx-build -b html docs/source/ _build
poetry run sphinx-build -b html docs/source/ _build

0 comments on commit 1fe2b1d

Please sign in to comment.