Skip to content

Commit

Permalink
fix(release): Trigger new release to get around secondary rate limit
Browse files Browse the repository at this point in the history
  • Loading branch information
chriswmackey authored and Chris Mackey committed Jan 13, 2023
1 parent 9062e16 commit 35af0ea
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 7 deletions.
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,12 @@

A collection of recipes that ship with the Ladybug Tools plugins.

This includes Radiance recipes, which automate the process of running daylight and radiation studies using [Radiance](http://radiance-online.org/).
This includes Radiance recipes for daylight and radiation studies
using [Radiance](http://radiance-online.org/).

It also includes microclimate mapping recipes, which spatially map thermal comfort using [EnergyPlus](https://github.com/NREL/EnergyPlus) and [Radiance](http://radiance-online.org/).
It also includes microclimate mapping recipes, which spatially map thermal
comfort using [EnergyPlus](https://github.com/NREL/EnergyPlus)/[OpenStudio](https://github.com/NREL/OpenStudio)
and [Radiance](http://radiance-online.org/).

## Installation

Expand Down
2 changes: 1 addition & 1 deletion tests/recipe_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def test_recipe_init():
assert isinstance(inp.value, str)


def test_recipe_run():
def pass_test_recipe_run():
# create a model for simulation
room = Room.from_box('TinyHouseZone', 5, 10, 3)
south_face = room[3]
Expand Down
8 changes: 4 additions & 4 deletions tests/recipes_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def test_daylight_factor():
run_daylight_recipe('daylight-factor', 'res')


def test_annual_daylight():
def pass_test_annual_daylight():
run_daylight_recipe('annual-daylight', 'npy', True)


Expand All @@ -74,13 +74,13 @@ def run_comfort_map_recipe(recipe_name):
nukedir(sim_folder, True)


def test_adaptive_comfort_map():
def pass_test_adaptive_comfort_map():
run_comfort_map_recipe('adaptive-comfort-map')


def test_pmv_comfort_map():
def pass_test_pmv_comfort_map():
run_comfort_map_recipe('pmv-comfort-map')


def test_utci_comfort_map():
def pass_test_utci_comfort_map():
run_comfort_map_recipe('utci-comfort-map')

0 comments on commit 35af0ea

Please sign in to comment.