Skip to content

Commit

Permalink
fix(release): Trigger new release
Browse files Browse the repository at this point in the history
  • Loading branch information
mikkelkp committed Aug 28, 2024
1 parent 65cda32 commit 0ea7bf4
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions tests/post_process_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def test_daylight_factor_vis_metadata():
assert qb_function.name == 'daylight-factor-vis-metadata'
assert isinstance(qb_function, Function)

inputs = {} # inputs is empty for this function
inputs = {} # inputs is empty for this function
folder = Path('./tests/assets/temp')
if not folder.exists():
folder.mkdir(parents=True)
Expand All @@ -76,7 +76,7 @@ def test_imageless_annual_glare_vis_metadata():
assert qb_function.name == 'imageless-annual-glare-vis-metadata'
assert isinstance(qb_function, Function)

inputs = {} # inputs is empty for this function
inputs = {} # inputs is empty for this function
folder = Path('./tests/assets/temp')
if not folder.exists():
folder.mkdir(parents=True)
Expand All @@ -86,6 +86,7 @@ def test_imageless_annual_glare_vis_metadata():

nukedir(folder)


def test_point_in_time_vis_metadata():
function = PointInTimeVisMetadata()
qb_function = function.queenbee
Expand All @@ -102,13 +103,14 @@ def test_point_in_time_vis_metadata():

nukedir(folder)


def test_cumulative_radiation_vis_metadata():
function = CumulativeRadiationVisMetadata()
qb_function = function.queenbee
assert qb_function.name == 'cumulative-radiation-vis-metadata'
assert isinstance(qb_function, Function)

inputs = {} # inputs is empty for this function
inputs = {} # inputs is empty for this function
folder = Path('./tests/assets/temp')
if not folder.exists():
folder.mkdir(parents=True)
Expand All @@ -118,13 +120,14 @@ def test_cumulative_radiation_vis_metadata():

nukedir(folder)


def test_average_irradiance_vis_metadata():
function = AverageIrradianceVisMetadata()
qb_function = function.queenbee
assert qb_function.name == 'average-irradiance-vis-metadata'
assert isinstance(qb_function, Function)

inputs = {} # inputs is empty for this function
inputs = {} # inputs is empty for this function
folder = Path('./tests/assets/temp')
if not folder.exists():
folder.mkdir(parents=True)
Expand All @@ -134,13 +137,14 @@ def test_average_irradiance_vis_metadata():

nukedir(folder)


def test_sky_view_vis_metadata():
function = SkyViewVisMetadata()
qb_function = function.queenbee
assert qb_function.name == 'sky-view-vis-metadata'
assert isinstance(qb_function, Function)

inputs = {} # inputs is empty for this function
inputs = {} # inputs is empty for this function
folder = Path('./tests/assets/temp')
if not folder.exists():
folder.mkdir(parents=True)
Expand Down

0 comments on commit 0ea7bf4

Please sign in to comment.