Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 12 additions & 6 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ jobs:
docker exec -t test ls
docker exec -t test bundle update
docker exec -t test bundle exec rake
docker exec -t test bundle exec rake suites_run
docker exec -t test bundle exec rake osm_suite:run
docker exec -t test bundle exec rake prototype_suite:run
docker kill test
test_351x:
runs-on: ubuntu-22.04
Expand All @@ -38,7 +39,8 @@ jobs:
docker exec -t test ls
docker exec -t test bundle update
docker exec -t test bundle exec rake
docker exec -t test bundle exec rake suites_run
docker exec -t test bundle exec rake osm_suite:run
docker exec -t test bundle exec rake prototype_suite:run
docker kill test
test_361x:
runs-on: ubuntu-22.04
Expand All @@ -55,7 +57,8 @@ jobs:
docker exec -t test ls
docker exec -t test bundle update
docker exec -t test bundle exec rake
docker exec -t test bundle exec rake suites_run
docker exec -t test bundle exec rake osm_suite:run
docker exec -t test bundle exec rake prototype_suite:run
docker kill test
test_370x:
runs-on: ubuntu-22.04
Expand All @@ -72,7 +75,8 @@ jobs:
docker exec -t test ls
docker exec -t test bundle update
docker exec -t test bundle exec rake
docker exec -t test bundle exec rake suites_run
docker exec -t test bundle exec rake osm_suite:run
docker exec -t test bundle exec rake prototype_suite:run
docker kill test
test_380x:
runs-on: ubuntu-22.04
Expand All @@ -89,7 +93,8 @@ jobs:
docker exec -t test ls
docker exec -t test bundle update
docker exec -t test bundle exec rake
docker exec -t test bundle exec rake suites_run
docker exec -t test bundle exec rake osm_suite:run
docker exec -t test bundle exec rake prototype_suite:run
docker kill test
test_390x:
runs-on: ubuntu-22.04
Expand All @@ -106,7 +111,8 @@ jobs:
docker exec -t test ls
docker exec -t test bundle update
docker exec -t test bundle exec rake
docker exec -t test bundle exec rake suites_run
docker exec -t test bundle exec rake osm_suite:run
docker exec -t test bundle exec rake prototype_suite:run
docker kill test
test_3100x:
runs-on: ubuntu-22.04
Expand Down
2 changes: 1 addition & 1 deletion lib/tbd_tests/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,5 @@
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

module TBD_Tests
VERSION = "0.2.4".freeze
VERSION = "0.3.0".freeze
end
14 changes: 7 additions & 7 deletions spec/tbd_osm_suite_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -50,31 +50,31 @@ def clean

osms << "seb.osm"
# osms << "secondaryschool.osm"
# osms << "smalloffice.osm"
osms << "smalloffice.osm"
osms << "warehouse.osm"

epws["seb.osm" ] = "srrl_2013_amy.epw"
# epws["secondaryschool.osm"] = "CAN_PQ_Quebec.717140_CWEC.epw"
# epws["smalloffice.osm" ] = "CAN_PQ_Quebec.717140_CWEC.epw"
epws["smalloffice.osm" ] = "CAN_PQ_Quebec.717140_CWEC.epw"
epws["warehouse.osm" ] = "CAN_PQ_Quebec.717140_CWEC.epw"

opts << "skip"
# opts << "poor (BETBG)"
# opts << "skip"
opts << "poor (BETBG)"
# opts << "regular (BETBG)"
# opts << "efficient (BETBG)"
# opts << "spandrel (BETBG)"
# opts << "spandrel HP (BETBG)"
# opts << "code (Quebec)"
# opts << "uncompliant (Quebec)"
# opts << "90.1.22|steel.m|default"
opts << "90.1.22|steel.m|default"
opts << "90.1.22|steel.m|unmitigated"
# opts << "90.1.22|mass.ex|default"
# opts << "90.1.22|mass.ex|unmitigated"
# opts << "90.1.22|mass.in|default"
# opts << "90.1.22|mass.in|unmitigated"
# opts << "90.1.22|wood.fr|default"
opts << "90.1.22|wood.fr|unmitigated"
opts << "(non thermal bridging)"
# opts << "90.1.22|wood.fr|unmitigated"
# opts << "(non thermal bridging)"

osms.each do |osm|
opts.each { |opt| combos << [osm, opt] }
Expand Down
10 changes: 5 additions & 5 deletions spec/tbd_prototype_suite_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -60,30 +60,30 @@ def clean
types << "Warehouse"
# types << "RetailStandalone"
# types << "RetailStripmall"
# types << "QuickServiceRestaurant"
types << "QuickServiceRestaurant"
# types << "FullServiceRestaurant"
# types << "MidriseApartment"
# types << "HighriseApartment"
# types << "Hospital"
# types << "Outpatient"

opts << "skip"
# opts << "skip"
# opts << "poor (BETBG)"
# opts << "regular (BETBG)"
# opts << "efficient (BETBG)"
# opts << "spandrel (BETBG)"
# opts << "spandrel HP (BETBG)"
# opts << "code (Quebec)"
# opts << "uncompliant (Quebec)"
# opts << "90.1.22|steel.m|default"
opts << "90.1.22|steel.m|default"
opts << "90.1.22|steel.m|unmitigated"
# opts << "90.1.22|mass.ex|default"
# opts << "90.1.22|mass.ex|unmitigated"
# opts << "90.1.22|mass.in|default"
# opts << "90.1.22|mass.in|unmitigated"
# opts << "90.1.22|wood.fr|default"
opts << "90.1.22|wood.fr|unmitigated"
opts << "(non thermal bridging)"
# opts << "90.1.22|wood.fr|unmitigated"
# opts << "(non thermal bridging)"

types.each do |type|
opts.each { |opt| combos << [type, opt] }
Expand Down
Loading