Skip to content

testor.py

A simple function to test the module.

testor(value, to_add=1)

A function to launch the program in order to test it.

Parameters

value : list
A list of values.

int, optional

An optional argument to test them. By default 1.

Source code in src/perfassess/testor.py
 9
10
11
12
13
14
15
16
17
18
19
20
21
def testor(value: list, to_add: int = 1):
    """A function to launch the program in order to test it.

    Parameters
    ----------
    value : `list`
        A list of values.

    to_add : `int`, optional
        An optional argument to test them. By default 1.
    """
    for value_i in value:
        to_add += value_i