Please enable JavaScript.
Coggle requires JavaScript to display documents.
🎯 Pytest Workflow - Coggle Diagram
🎯 Pytest Workflow
🛠 Можливості pytest
pytest.fixture
— фікстури
pytest.mark.parametrize
— параметризація
pytest.raises — перевірка винятків
pytest.approx — float-порівняння
🏃 Запуск
pytest -v (verbose)
pytest -k "pattern" (фільтр)
pytest -x (stop on first failure)
pytest --pdb (debugger)
⚙ Setup
Створити test_*.py
pip install pytest pytest-cov
Іменування: test_funcname()
✍ Написання тесту (AAA)
Arrange — підготовка
Act — виклик
Assert — перевірка
📊 Coverage
pytest --cov=. --cov-report=html
Відкрити htmlcov/index.html
Ціль ≥ 80%