Skip to content

Commit

Permalink
Delete ignored data from integration tests
Browse files Browse the repository at this point in the history
  • Loading branch information
p-snft committed Aug 26, 2024
1 parent 0c394ed commit 71af2ba
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -238,4 +238,3 @@ timestep,price_el_sink,price_el_source
237,-33.57,33.57
238,-30.51,30.51
239,-30.57,30.57
240,-29.28,29.28
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def test_gen_caes():
data = pd.read_csv(full_filename)

# select periods
periods = len(data) - 1
periods = len(data)

# create an energy system
idx = pd.date_range("1/1/2017", periods=periods, freq="h")
Expand Down
1 change: 0 additions & 1 deletion tests/test_scripts/test_solph/test_generic_chp/ccet.csv
Original file line number Diff line number Diff line change
Expand Up @@ -198,4 +198,3 @@ timestep,demand_th,price_el,Eta_el_max_woDH,P_max_woDH,Eta_el_min_woDH,P_min_woD
197,0.97,-50,0.53,199.73,0.43,80.65,0.19,31.71,0.19
198,0.98,-50,0.53,199.73,0.43,80.65,0.19,31.71,0.19
199,0.99,-50,0.53,199.73,0.43,80.65,0.19,31.71,0.19
200,1,-50,0.53,199.73,0.43,80.65,0.19,31.71,0.19
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def test_gen_chp():
data = pd.read_csv(full_filename)

# select periods
periods = len(data) - 1
periods = len(data)

# create an energy system
idx = pd.date_range("1/1/2017", periods=periods, freq="h")
Expand Down

0 comments on commit 71af2ba

Please sign in to comment.