Skip to content

Commit

Permalink
and wind site
Browse files Browse the repository at this point in the history
  • Loading branch information
peterdudfield committed Dec 16, 2024
1 parent 1bb7410 commit cd1d0b6
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,20 @@ def sites(db_session):
db_session.add(site)
sites.append(site)

# Ad wind site
site = SiteSQL(
client_site_id=3,
client_site_name="test_site_ad_wind",
latitude=26.4199,
longitude=72.6699,
capacity_kw=25000,
ml_id=2,
asset_type="wind",
country="india",
)
db_session.add(site)
sites.append(site)

db_session.commit()

return sites
Expand Down

0 comments on commit cd1d0b6

Please sign in to comment.