-
Have one team member fork AND clone this repository. They will be the driver. All commands and code will be run on their computer.
-
Create a virtual environment
python3 -m venv venv
- Activate the virtual environment
source venv/bin/activate
- Install requirements
pip install -r requirements.txt
- Run the code, entering a few numbers and computing an average.
python3 main.py
-
Read the code in
average_calculator/calc.py
, discussing with your group how it works. In particular, what is the try/except doing? -
Predict what will happen if you run the code and try to compute an average before entering any numbers. Then, try actually running it. What happens? Does it match what you expected?
-
Modify the average function. Make it so that it does NOT raise a
ZeroDivisionError
. Instead, have it raise aValueError
. The description of the new error you create should becannot compute average of an empty collection
. -
Run the code again, attempting to compute an average before entering any numbers. Verify that your new exception shows up.
-
Create a new commit with your changes added, and push it to GitHub.
-
Modify the
calculator
function, adding a new try/catch to catch your new exception. Make it so that the code does not crash if the user attempts to calculate an average before entering numbers. Instead, it should show the messageYou must enter at least one number before calculating an average
. It should then continue to prompt the user for more input. -
Create a new commit with your changes added, and push it to GitHub.
-
Verify that pytest is set up correctly by running
pytest
on the terminal (make sure you have your virtual environment activated!). You should see two tests skipped. -
Open
tests/test_calc.py
and completetest_average_of_two_numbers_is_properly_computed
. This does not require any exception handling. Unskip the test and verify that it works. -
Complete
test_average_of_empty_list_raises_ValueError
. This does require testing for an exception. Unskip the test and verify that it works. -
Create a new commit with your changes added, and push it to GitHub.
-
Add additional tests to more thoroughly test the code.
-
Try modifying the
calculator
function to instead use the "Look Before You Leap" strategy, so that you do not need to use a try/except for the average. Which style do you prefer? What are the tradeoffs between the two, especially when we imagine adding more and more code that uses these functions?