Skip to content

How to contribute to ANTA

Contribution model is based on a fork-model. Don’t push to aristanetworks/anta directly. Always do a branch in your forked repository and create a PR.

To help development, open your PR as soon as possible even in draft mode. It helps others know what you are working on and avoid duplicate PRs.

Create a development environment

Run the following commands to create an ANTA development environment:

# Clone repository
$ git clone https://github.com/aristanetworks/anta.git
$ cd anta

# Install ANTA in editable mode and its development tools
$ pip install -e . --group dev
# To also install the CLI
$ pip install -e ".[cli]" --group dev

Verify editable installation

Run pip list -e from the repository root to confirm the editable install:

$ pip list -e
Package Version Editable project location
------- ------- -------------------------
anta    1.9.0   /mnt/lab/projects/anta

Then, tox is configured with a few environments to run CI locally:

$ tox list -d
default environments:
clean  -> Erase previous coverage reports
lint   -> Check the code style
type   -> Check typing
py310  -> Run pytest with py310
py311  -> Run pytest with py311
py312  -> Run pytest with py312
py313  -> Run pytest with py313
py314  -> Run pytest with py314
report -> Generate coverage report

Code linting

tox -e lint
[...]
lint: commands[0]> ruff check .
All checks passed!
lint: commands[1]> ruff format . --check
224 files already formatted
lint: commands[2]> pylint anta

--------------------------------------------------------------------
Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00)

lint: commands[3]> pylint tests

--------------------------------------------------------------------
Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00)

lint: commands[4]> pylint asynceapi

--------------------------------------------------------------------
Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00)

  lint: OK (38.75=setup[12.60]+cmd[0.98,0.08,9.51,13.49,2.09] seconds)
  congratulations :) (38.78 seconds)

Code Typing

tox -e type

[...]
type: commands[0]> pyright anta
0 errors, 0 warnings, 0 informations
type: commands[1]> pyright tests
0 errors, 0 warnings, 0 informations
type: commands[2]> pyright asynceapi
0 errors, 0 warnings, 0 informations
  type: OK (20.77=setup[15.14]+cmd[2.67,2.31,0.64] seconds)
  congratulations :) (20.79 seconds)

NOTE: Typing is configured quite strictly, do not hesitate to reach out if you have any questions, struggles, nightmares.

Unit tests with Pytest

To keep high-quality code, every implemented AntaTest must have a corresponding pytest unit test.

Add the unit test to the appropriate submodule test file under tests/units/anta_tests/test_<submodule-name>.py, following the repository convention of adding cases to the module’s DATA constant and importing the generic test function.

How to run unit tests

To run the unit test suite from an activated development environment:

pytest tests/units

To run a specific unit test module or test node:

pytest tests/units/anta_tests/test_system.py
pytest tests/units/anta_tests/test_system.py::test

If you use uv for your local workflow, it can create or update the environment before running pytest:

uv run --group dev --extra cli pytest tests/units

Use tox when you want to run the unit tests in the same isolated environments used by CI:

tox -e py311 -- tests/units
tox -e py310,py311,py312,py313,py314 -- tests/units

The -- separator passes the remaining arguments to pytest, so the same file or test-node selection works with tox:

tox -e py311 -- tests/units/anta_tests/system.py
tox -e py311 -- tests/units/anta_tests/test_system.py
tox -e py311 -- tests/units/anta_tests/test_system.py::test

Python versions and tox

The tox environments are mapped to concrete Python versions (py310, py311, py312, py313, and py314). Running one tox environment requires that matching Python interpreter to be installed and discoverable on your machine; running the full matrix requires all of them.

uv can help install and manage Python interpreters, for example:

uv python install 3.10 3.11 3.12 3.13 3.14

This does not replace tox for matrix testing in this repository. It only makes it easier to provide the Python interpreters that tox needs.

How to write a unit test for an AntaTest subclass

The Python modules in the tests.units.anta_tests package define test parameters for AntaTest subclasses unit tests. A generic test function is written for all unit tests of the AntaTest subclasses. In order for your unit tests to be correctly collected, you need to import the generic test function even if not used in the Python module.

The pytest_generate_tests function definition in conftest.py is called during test collection.

The pytest_generate_tests function will parametrize the generic test function based on the DATA constant defined in modules in the tests.units.anta_tests package.

See https://docs.pytest.org/en/stable/how-to/parametrize.html#basic-pytest-generate-tests-example

The DATA structure is a dictionary where:

  • Each key is a tuple of size 2 containing:
  • An AntaTest subclass imported in the test module as first element - e.g. VerifyUptime.
  • A string used as name displayed by pytest as second element.
  • Each value is an instance of AntaUnitTest, which is a Python TypedDict.

A TypeAlias called AntaUnitTestData has been created for convenience.

And AntaUnitTest have the following keys:

  • eos_data (list[dict]): List of data mocking EOS returned data to be passed to the test.
  • inputs (dict): Dictionary to instantiate the test inputs as defined in the class from test.
  • expected (dict): Expected test result structure, a dictionary containing a key result containing one of the allowed status (Literal[AntaTestStatus.SUCCESS, AntaTestStatus.FAILURE, AntaTestStatus.SKIPPED]) and optionally a key messages which is a list(str) and each message is expected to be a substring of one of the actual messages in the TestResult object.
class AtomicResult(TypedDict):
    """Expected atomic result of a unit test of an AntaTest subclass."""

    description: str # The expected description of this atomic result.
    result: Literal[AntaTestStatus.SUCCESS, AntaTestStatus.FAILURE, AntaTestStatus.SKIPPED] # The expected status of this atomic result.
    messages: NotRequired[list[str]] # The expected messages of this atomic result. The strings can be a substrings of the actual messages.

class UnitTestResult(TypedDict):
    """Expected result of a unit test of an AntaTest subclass.

    For our AntaTest unit tests we expect only success, failure or skipped.
    Never unset nor error.
    """

    result: Literal[AntaTestStatus.SUCCESS, AntaTestStatus.FAILURE, AntaTestStatus.SKIPPED] # The expected status of this unit test.
    messages: NotRequired[list[str]] # The expected messages of the test. The strings can be a substrings of the actual messages.
    atomic_results: NotRequired[list[AtomicResult]] # The list of expected atomic results.

class AntaUnitTest(TypedDict):
    """The parameters required for a unit test of an AntaTest subclass."""

    inputs: NotRequired[dict[str, Any]] # The test inputs of this unit test.
    eos_data: list[dict[str, Any] | str] # List of command outputs used to mock EOS commands during this unit test.
    expected: UnitTestResult  # The expected result of this unit test.

AntaUnitTestData: TypeAlias = dict[tuple[type[AntaTest], str], AntaUnitTest]

Test example for anta.tests.system.VerifyUptime AntaTest.

# Import your AntaTest
from anta.tests.system import VerifyUptime

# Import the generic test function
from tests.units.anta_tests import test

# Define test parameters
DATA: AntaUnitTestData = {
  (VerifyUptime, "success"): {
    # JSON output of the 'show uptime' EOS command as defined in VerifyUptime.commands
    "eos_data": [{"upTime": 1186689.15, "loadAvg": [0.13, 0.12, 0.09], "users": 1, "currentTime": 1683186659.139859}],
    # Dictionary to instantiate VerifyUptime.Input
    "inputs": {"minimum": 666},
    # Expected test result
    "expected": {"result": AntaTestStatus.SUCCESS},
  },
  (VerifyUptime, "failure"): {
    "eos_data": [{"upTime": 665.15, "loadAvg": [0.13, 0.12, 0.09], "users": 1, "currentTime": 1683186659.139859}],
    "inputs": {"minimum": 666},
    # If the test returns messages, it needs to be expected otherwise test will fail.
    # The expected message can be a substring of the actual message.
    "expected": {"result": AntaTestStatus.FAILURE, "messages": ["Device uptime is 665.15 seconds"]},
  }
}

Test example for anta.tests.connectivity.VerifyReachability AntaTest that contains atomic results.

from anta.tests.connectivity import VerifyReachability
from tests.units.anta_tests import test

DATA: AntaUnitTestData = {
    (VerifyReachability, "failure-ip"): {
        "inputs": {"hosts": [{"destination": "10.0.0.11", "source": "10.0.0.5"}, {"destination": "10.0.0.2", "source": "10.0.0.5"}]},
        "eos_data": [
            {
                "messages": [
                    "ping: sendmsg: Network is unreachable\n                ping: sendmsg: Network is unreachable\n                "
                    "PING 10.0.0.11 (10.0.0.11) from 10.0.0.5 : 72(100) bytes of data.\n\n                --- 10.0.0.11 ping statistics ---\n"
                    "                2 packets transmitted, 0 received, 100% packet loss, time 10ms\n\n\n                "
                ]
            },
            {
                "messages": [
                    "PING 10.0.0.2 (10.0.0.2) from 10.0.0.5 : 72(100) bytes of data.\n                80 bytes from 10.0.0.2: icmp_seq=1 ttl=64 time=0.247 ms\n"
                    "                80 bytes from 10.0.0.2: icmp_seq=2 ttl=64 time=0.072 ms\n\n                --- 10.0.0.2 ping statistics ---\n                "
                    "2 packets transmitted, 2 received, 0% packet loss, time 0ms\n                rtt min/avg/max/mdev = 0.072/0.159/0.247/0.088 ms,"
                    " ipg/ewma 0.370/0.225 ms\n\n                "
                ]
            },
        ],
        "expected": {
            "result": AntaTestStatus.FAILURE,
            "messages": ["Unreachable Host 10.0.0.11 (src: 10.0.0.5, vrf: default, size: 100B, repeat: 2)"],
            # This test has implemented atomic results.
            # Expected atomic results must be specified or the test will fail. Order matters.
            # The atomic results must be defined in the same order.
            "atomic_results": [
                {
                    # Expected atomic result description
                    "description": "Destination 10.0.0.11 from 10.0.0.5 in VRF default",
                    # If the atomic result is tied to a subset of the test inputs, it needs to be added here otherwise the test will fail.
                    "inputs": {
                        "destination": "10.0.0.11",
                        "df_bit": False,
                        "repeat": 2,
                        "size": 100,
                        "source": "10.0.0.5",
                        "vrf": "default",
                    },
                    # Expected atomic result status
                    "result": AntaTestStatus.FAILURE,
                    # If the atomic result returns messages, it needs to be expected otherwise test will fail.
                    # The expected message can be a substring of the actual message.
                    # The messages must be defined in the same order.
                    "messages": ["Unreachable Destination 10.0.0.11 from 10.0.0.5 in VRF default"],
                },
                {
                    "description": "Host 10.0.0.2 in VRF default",
                    "inputs": {
                        "destination": "10.0.0.2",
                        "df_bit": False,
                        "repeat": 2,
                        "size": 100,
                        "source": "10.0.0.5",
                        "vrf": "default",
                    },
                    "messages": [],
                    "result": AntaTestStatus.SUCCESS,
                },
            ],
        },
    }
}

Git Pre-commit hook

pip install pre-commit
pre-commit install

When running a commit or a pre-commit check:

 pre-commit
trim trailing whitespace.................................................Passed
fix end of files.........................................................Passed
check for added large files..............................................Passed
check for merge conflicts................................................Passed
Check and insert license on Python files.................................Passed
Check and insert license on Markdown files...............................Passed
Run Ruff linter..........................................................Passed
Run Ruff formatter.......................................................Passed
Check code style with pylint.............................................Passed
Checks for common misspellings in text files.............................Passed
PyRight static type checker..............................................Passed
Check for Linting errors on Markdown files...............................Passed
Check GitHub Actions with zizmor.........................................Passed
Generate examples/tests.yaml.............................................Passed
- hook id: examples-test
Generate doc snippets....................................................Passed
- hook id: doc-snippets

Documentation

Zensical is used to preview and build the documentation. A PR should always update the documentation to avoid documentation debt.

Documentation source lives under docs/ and is built from the repository root. Do not commit rendered site/ output.

Install documentation requirements

Run pip to install the documentation requirements from the root of the repo:

pip install -e . --group doc -e tools/zensical_extensions

Testing documentation

You can then preview the documentation locally using the following command from the root of the repo:

zensical serve

By default, zensical listens to http://127.0.0.1:8000/, if you need to expose the documentation to another IP or port (for instance all IPs on port 8080), use the following command:

zensical serve --dev-addr=0.0.0.0:8080

Run the same build command used by CI before opening a documentation PR:

zensical build --strict

Use zensical build --clean when you want to remove the previous generated output before building locally:

zensical build --clean

Generated CLI snippets

The CLI help blocks published in the documentation are generated from the current Click output. After changing CLI commands, options, or help text, refresh the snippets and verify that the generated files are committed:

uv run --extra cli python docs/scripts/generate_doc_snippets.py
git diff --exit-code -- docs/snippets
test -z "$(git status --porcelain -- docs/snippets)"

The doc-snippets pre-commit hook runs the generator for CLI changes, and CI runs the same freshness check before building the documentation.

Curated class diagram

The class diagram published in the API documentation is a curated Mermaid diagram, not a generated artifact. Generated class diagrams were considered, but the output is either too sparse for documentation or too noisy because it includes implementation details and third-party classes.

When changing public classes, attributes, methods, inheritance, or relationships in the ANTA API, review and update docs/api/class-diagram.mmd in the same PR.

Keep the diagram focused on the API overview. Include public fields, important properties, class variables, constructors or class methods used by users, and relationships that help explain how the main objects fit together. Avoid adding private implementation details unless they are needed to explain an important relationship.

Use the existing Mermaid conventions in docs/api/class-diagram.mmd:

  • Put classes in the existing namespaces so the diagram keeps the Inventory, Device, Catalog, Test, and Result Manager layout.
  • Mark Pydantic models with :::pydantic.
  • Mark dataclasses with :::dataclass.
  • Add <<Dataclass>> or <<Frozen Dataclass>> in the class body for dataclasses.
  • Keep the color definitions at the bottom of the file in sync with the legend on the API page.

Build the documentation locally and inspect the rendered diagram after editing it:

uv run --group doc --with-editable tools/zensical_extensions zensical build --clean --strict

The rendered diagram has a fullscreen button for readability. Use it to check that labels are visible and that the layout still reads correctly on a screen.

Writing documentation is crucial but managing links can be cumbersome. To be sure there are no dead links, you can use muffet with the following command:

muffet -c 2 --color=always http://127.0.0.1:8000 -e fonts.gstatic.com -b 8192

Continuous Integration

GitHub actions is used to test git pushes and pull requests. The workflows are defined in this directory. The results can be viewed here.