Implement the function add_numbers(a, b)
in main.py
so it returns the sum of a
and b
.
- Keep the function name
add_numbers
. - Handle positive, negative integers, and zero.
- Create a Python venv and activate it.
pip install pytest
pytest -q
When you push to GitHub, tests run automatically. Check the Actions tab in your repo for results.