pytest
Popular testing framework
Interview Relevant: Industry standard
Pytest
Simple, powerful testing framework.
Code Examples
python
1# test_math.py
2def add(a, b): return a + b
3
4def test_add():
5 assert add(1, 2) == 3Popular testing framework
Simple, powerful testing framework.
1# test_math.py
2def add(a, b): return a + b
3
4def test_add():
5 assert add(1, 2) == 3Ask about the topic