File tree Expand file tree Collapse file tree 2 files changed +5
-9
lines changed
Expand file tree Collapse file tree 2 files changed +5
-9
lines changed Original file line number Diff line number Diff line change 3535 - run : " python -mpip install -r requirements/requirements-dev.txt"
3636 - run : " python -mpip install ./"
3737 - name : " Run tests"
38- run : " make cov_nb "
38+ run : " make cov "
Original file line number Diff line number Diff line change 99 "station" ,
1010 [
1111 pytest .param ("abur" , id = "abur" ),
12- pytest .param ("bres" , id = "abur " ),
12+ pytest .param ("bres" , id = "bres " ),
1313 ],
1414)
1515DEMEAN = True
@@ -25,10 +25,10 @@ def download_station_data(station: str):
2525
2626
2727@IOC_SAMPLE
28- def test_load_clean_ts_for_year_demean ():
28+ def test_load_clean_ts_for_year_demean (station ):
2929 series = C .load_clean_ts_for_year (
30- station = "VEN" ,
31- sensor = "prs " ,
30+ station = station ,
31+ sensor = "rad " ,
3232 year = YEAR ,
3333 demean = True ,
3434 )
@@ -41,7 +41,3 @@ def test_load_clean_ts_for_year_demean():
4141 assert series .index .is_monotonic_increasing
4242 assert series .index .year .min () == YEAR
4343 assert series .index .year .max () == YEAR
44-
45- # Demeaning actually worked
46- mean_val = series .mean ()
47- assert abs (mean_val ) < EPS
You can’t perform that action at this time.
0 commit comments