Skip to content

Commit f89b49a

Browse files
committed
remove long description from test skeleton
1 parent e8f3b6a commit f89b49a

File tree

1 file changed

+1
-19
lines changed

1 file changed

+1
-19
lines changed

python-interview-problems-parsing-csv/skeleton_code/test_weather_v1.py

Lines changed: 1 addition & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,5 @@
11
#!/usr/bin/env python3
2-
""" Find the day with the highest average temperature.
3-
Write a program that takes a filename on the command line and processes the
4-
CSV contents. The contents will be a CSV file with a month of weather data,
5-
one day per line.
6-
7-
Determine which day had the highest average temperature where the average
8-
temperature is the average of the day's high and low temperatures. This is
9-
not normally how average temperature is computed, but it will work for our
10-
demonstration.
11-
12-
The first line of the CSV file will be column headers:
13-
14-
Day,MxT,MnT,AvT,AvDP,1HrP TPcn,PDir,AvSp,Dir,MxS,SkyC,MxR,Mn,R AvSLP
15-
16-
The day number, max temperature, and min temperature are the first three
17-
columns.
18-
19-
Write unit tests with Pytest to test your program.
20-
"""
2+
""" Pytest functions for CSV Weather problem """
213
import pytest
224

235
# import weather_v1 as wthr

0 commit comments

Comments
 (0)