pip install pytest
A Windows például ide telepítheti, verziótól függően:
app01/ |-src/ | `-triangle.py |-test/ | `-test_triangle.py `-pytest.ini
[pytest] pythonpath = src
def calcaArea(base, height): return (base * height) / 2
from triangle import calcaArea def test_calcaArea_30_35(): assert calcaArea(30, 35) == 525 def test_calcArea_5_10(): assert calcaArea(5, 10) == 25
from triangle import calcaArea
Futtatás:
pytest
Szükségünk van egy setting.json fájlra.
Teszt futtatása:
from src.triangle import calcArea
A másik lehetőség, ha létrehozunk az src könyvtárban egy conftest.py fájlt üresen.
app01/ |-src/ | |-conftest.py | `-triangle.py `-test/ `-test_triangle.py
Futtatás:
pytest