openstudio-analysis 0.3.7 → 0.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (91) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +8 -6
  3. data/README.md +55 -7
  4. data/Rakefile +10 -0
  5. data/lib/openstudio/analysis/algorithm_attributes.rb +22 -0
  6. data/lib/openstudio/analysis/formulation.rb +174 -0
  7. data/lib/openstudio/analysis/translator/excel.rb +65 -48
  8. data/lib/openstudio/analysis/version.rb +1 -1
  9. data/lib/openstudio/analysis/workflow.rb +197 -0
  10. data/lib/openstudio/analysis/workflow_step.rb +312 -0
  11. data/lib/openstudio/analysis.rb +8 -0
  12. data/lib/openstudio/helpers/string.rb +22 -22
  13. data/lib/openstudio/templates/analysis.json.erb +0 -1
  14. data/lib/openstudio-analysis.rb +9 -0
  15. data/spec/files/0_1_09_small_list_incomplete.xlsx +0 -0
  16. data/spec/files/0_2_0_template_simpletest.xlsx +0 -0
  17. data/spec/files/0_4_0_lhs_discrete_continuous.xlsx +0 -0
  18. data/spec/files/analysis/example_analysis_api.json +656 -0
  19. data/spec/files/analysis/examples/discrete_lhs_example.json +809 -0
  20. data/spec/files/analysis/examples/medium_office_example.json +1673 -0
  21. data/spec/files/analysis/lhs_discrete_and_continuous_variables_api.json +1230 -0
  22. data/spec/files/analysis/medium_office.json +91 -92
  23. data/spec/files/analysis/medium_office.zip +0 -0
  24. data/spec/files/analysis/name_goes_here_api.json +1681 -0
  25. data/spec/files/analysis/output_vars_api.json +632 -0
  26. data/spec/files/analysis/preflight_api.json +1518 -0
  27. data/spec/files/analysis/simple_test_api.json +519 -0
  28. data/spec/files/analysis/test_model_api.json +493 -0
  29. data/spec/files/export/analysis/0_1_09_outputvars.json +38 -39
  30. data/spec/files/export/analysis/0_1_09_outputvars.zip +0 -0
  31. data/spec/files/export/analysis/0_1_11_discrete_variables.json +46 -47
  32. data/spec/files/export/analysis/0_1_11_discrete_variables.zip +0 -0
  33. data/spec/files/export/analysis/0_1_12_discrete_dynamic_columns.json +8 -9
  34. data/spec/files/export/analysis/0_1_12_discrete_dynamic_columns.zip +0 -0
  35. data/spec/files/export/analysis/0_2_0_template_simpletest.json +19 -14
  36. data/spec/files/export/analysis/0_2_0_template_simpletest.zip +0 -0
  37. data/spec/files/export/analysis/0_3_0_outputs.json +99 -100
  38. data/spec/files/export/analysis/0_3_0_outputs.zip +0 -0
  39. data/spec/files/export/analysis/{6d6a08db-fdf8-4bb5-8ad3-18c471418c72.json → 276ccf51-ed22-4604-a380-8985cec5efe8.json} +103 -104
  40. data/spec/files/export/analysis/{6d6a08db-fdf8-4bb5-8ad3-18c471418c72.zip → 276ccf51-ed22-4604-a380-8985cec5efe8.zip} +0 -0
  41. data/spec/files/export/analysis/{55086845-70cf-487f-87f6-7a147cbf1e72.json → 639cb8a5-cdbb-4b69-955a-cbb650f6872b.json} +107 -108
  42. data/spec/files/export/analysis/{55086845-70cf-487f-87f6-7a147cbf1e72.zip → 639cb8a5-cdbb-4b69-955a-cbb650f6872b.zip} +0 -0
  43. data/spec/files/export/analysis/{10c791ce-cba7-4506-a863-3fb15703889b.json → 9560f95b-5730-4038-a95b-328c825c596b.json} +99 -100
  44. data/spec/files/export/analysis/{10c791ce-cba7-4506-a863-3fb15703889b.zip → 9560f95b-5730-4038-a95b-328c825c596b.zip} +0 -0
  45. data/spec/files/export/analysis/{f028bfbe-e30e-488d-adad-a60a62bbf7e0.json → c50f0062-cdfb-4dec-bc02-215f6c29af3c.json} +107 -108
  46. data/spec/files/export/analysis/{f028bfbe-e30e-488d-adad-a60a62bbf7e0.zip → c50f0062-cdfb-4dec-bc02-215f6c29af3c.zip} +0 -0
  47. data/spec/files/export/analysis/discrete_lhs_example.json +1185 -0
  48. data/spec/files/export/analysis/discrete_lhs_example.zip +0 -0
  49. data/spec/files/export/analysis/small_seed.json +38 -39
  50. data/spec/files/export/analysis/small_seed.zip +0 -0
  51. data/spec/files/export/workflow/analysis.json +23 -0
  52. data/spec/files/measures/ActualMeasureNoJson/measure.json +25 -0
  53. data/spec/files/measures/ActualMeasureNoJson/measure.rb +80 -0
  54. data/spec/files/measures/ActualMeasureNoJson/measure.xml +2 -0
  55. data/spec/files/measures/SetThermostatSchedules/measure.json +63 -0
  56. data/spec/files/measures/SetThermostatSchedules/measure.rb +254 -0
  57. data/spec/files/measures/SetThermostatSchedules/measure.xml +2 -0
  58. data/spec/openstudio/excel_spec.rb +11 -11
  59. data/spec/openstudio/formulation_spec.rb +107 -0
  60. data/spec/openstudio/workflow_spec.rb +90 -0
  61. data/spec/openstudio/workflow_step_spec.rb +116 -0
  62. data/spec/reports/SPEC-OpenStudio-Analysis-Formulation.xml +28 -0
  63. data/spec/reports/SPEC-OpenStudio-Analysis-ServerApi-create-a-new-object-instance.xml +2 -2
  64. data/spec/reports/SPEC-OpenStudio-Analysis-ServerApi-test-not-localhost.xml +2 -2
  65. data/spec/reports/SPEC-OpenStudio-Analysis-ServerApi.xml +1 -1
  66. data/spec/reports/SPEC-OpenStudio-Analysis-Translator-Excel-discrete-variables.xml +30 -4
  67. data/spec/reports/SPEC-OpenStudio-Analysis-Translator-Excel-discrete-with-dynamic-columns.xml +11 -3
  68. data/spec/reports/SPEC-OpenStudio-Analysis-Translator-Excel-no-variables-defined.xml +6 -6
  69. data/spec/reports/SPEC-OpenStudio-Analysis-Translator-Excel-proxy-setup-with-user.xml +2 -2
  70. data/spec/reports/SPEC-OpenStudio-Analysis-Translator-Excel-proxy-setup.xml +2 -2
  71. data/spec/reports/SPEC-OpenStudio-Analysis-Translator-Excel-setup-output-variables.xml +52 -8
  72. data/spec/reports/SPEC-OpenStudio-Analysis-Translator-Excel-setup-version-0-1-9.xml +22 -5
  73. data/spec/reports/SPEC-OpenStudio-Analysis-Translator-Excel-small-list-of-incomplete-variables.xml +2 -2
  74. data/spec/reports/SPEC-OpenStudio-Analysis-Translator-Excel-small-list-of-variables-should-not-validate.xml +2 -2
  75. data/spec/reports/SPEC-OpenStudio-Analysis-Translator-Excel-small-list-of-variables.xml +28 -5
  76. data/spec/reports/SPEC-OpenStudio-Analysis-Translator-Excel-small-list-with-with-repeated-variable-names.xml +2 -2
  77. data/spec/reports/SPEC-OpenStudio-Analysis-Translator-Excel-version-0-1-10.xml +3 -3
  78. data/spec/reports/SPEC-OpenStudio-Analysis-Translator-Excel-version-0-2-0-simple.xml +13 -6
  79. data/spec/reports/SPEC-OpenStudio-Analysis-Translator-Excel-version-0-2-0.xml +55 -5
  80. data/spec/reports/SPEC-OpenStudio-Analysis-Translator-Excel-version-0-3-0-dynamic-uuid-assignments.xml +9 -4
  81. data/spec/reports/SPEC-OpenStudio-Analysis-Translator-Excel-version-0-3-0-measure-existence-checks.xml +8 -3
  82. data/spec/reports/SPEC-OpenStudio-Analysis-Translator-Excel-version-0-3-0-objective-functions.xml +13 -5
  83. data/spec/reports/SPEC-OpenStudio-Analysis-Translator-Excel-version-0-3-3-and-short-display-names.xml +9 -4
  84. data/spec/reports/SPEC-OpenStudio-Analysis-Translator-Excel-version-0-3-5-and-measure-paths.xml +9 -4
  85. data/spec/reports/SPEC-OpenStudio-Analysis-Translator-Excel-version-0-3-7-and-worker-init-final-scripts.0.xml +40 -2
  86. data/spec/reports/SPEC-OpenStudio-Analysis-Translator-Excel-version-0-3-7-and-worker-init-final-scripts.xml +9 -4
  87. data/spec/reports/SPEC-OpenStudio-Analysis-Translator-Excel.xml +1 -1
  88. data/spec/reports/SPEC-OpenStudio-Analysis-Workflow.xml +31 -0
  89. data/spec/reports/SPEC-OpenStudio-Analysis-WorkflowStep.xml +29 -0
  90. data/spec/spec_helper.rb +1 -1
  91. metadata +87 -18
@@ -1,11 +1,28 @@
1
1
  <?xml version="1.0" encoding="UTF-8"?>
2
- <testsuite name="OpenStudio::Analysis::Translator::Excel setup version 0.1.9" tests="4" time="0.37209" failures="0" errors="0" skipped="0" timestamp="2014-11-08T02:22:05-07:00">
3
- <testcase name="OpenStudio::Analysis::Translator::Excel setup version 0.1.9 should have a version and analysis name in machine format" time="0.000216">
2
+ <testsuite name="OpenStudio::Analysis::Translator::Excel setup version 0.1.9" tests="4" time="0.389006" failures="0" errors="0" skipped="0" timestamp="2015-01-06T07:36:40-07:00">
3
+ <testcase name="OpenStudio::Analysis::Translator::Excel setup version 0.1.9 should have a version and analysis name in machine format" time="0.000209">
4
4
  </testcase>
5
- <testcase name="OpenStudio::Analysis::Translator::Excel setup version 0.1.9 should have the new settings" time="6.0e-05">
5
+ <testcase name="OpenStudio::Analysis::Translator::Excel setup version 0.1.9 should have the new settings" time="6.2e-05">
6
6
  </testcase>
7
- <testcase name="OpenStudio::Analysis::Translator::Excel setup version 0.1.9 should have algorithm setup" time="0.000508">
7
+ <testcase name="OpenStudio::Analysis::Translator::Excel setup version 0.1.9 should have algorithm setup" time="0.000936">
8
8
  </testcase>
9
- <testcase name="OpenStudio::Analysis::Translator::Excel setup version 0.1.9 should create a valid hash" time="0.00451">
9
+ <testcase name="OpenStudio::Analysis::Translator::Excel setup version 0.1.9 should create a valid hash" time="0.006053">
10
10
  </testcase>
11
+ <system-err>
12
+ Deprecation Warning. In Version 0.5 the _uncertain text will be removed from distribution types: triangle_uncertain
13
+ Deprecation Warning. RubyContinuousVariable (OpenStudio called this the variable_type) is no longer persisted
14
+ Deprecation Warning. workflow_step_type is no longer persisted
15
+ Deprecation Warning. In Version 0.5 the _uncertain text will be removed from distribution types: uniform_uncertain
16
+ Deprecation Warning. RubyContinuousVariable (OpenStudio called this the variable_type) is no longer persisted
17
+ Deprecation Warning. workflow_step_type is no longer persisted
18
+ Deprecation Warning. In Version 0.5 the _uncertain text will be removed from distribution types: uniform_uncertain
19
+ Deprecation Warning. RubyContinuousVariable (OpenStudio called this the variable_type) is no longer persisted
20
+ Deprecation Warning. workflow_step_type is no longer persisted
21
+ Deprecation Warning. In Version 0.5 the _uncertain text will be removed from distribution types: triangle_uncertain
22
+ Deprecation Warning. RubyContinuousVariable (OpenStudio called this the variable_type) is no longer persisted
23
+ Deprecation Warning. workflow_step_type is no longer persisted
24
+ Deprecation Warning. In Version 0.5 the _uncertain text will be removed from distribution types: triangle_uncertain
25
+ Deprecation Warning. RubyContinuousVariable (OpenStudio called this the variable_type) is no longer persisted
26
+ Deprecation Warning. workflow_step_type is no longer persisted
27
+ </system-err>
11
28
  </testsuite>
@@ -1,5 +1,5 @@
1
1
  <?xml version="1.0" encoding="UTF-8"?>
2
- <testsuite name="OpenStudio::Analysis::Translator::Excel small list of incomplete variables" tests="1" time="0.411684" failures="0" errors="0" skipped="0" timestamp="2014-11-08T02:22:03-07:00">
3
- <testcase name="OpenStudio::Analysis::Translator::Excel small list of incomplete variables should fail to process" time="0.346395">
2
+ <testsuite name="OpenStudio::Analysis::Translator::Excel small list of incomplete variables" tests="1" time="0.423755" failures="0" errors="0" skipped="0" timestamp="2015-01-06T07:36:38-07:00">
3
+ <testcase name="OpenStudio::Analysis::Translator::Excel small list of incomplete variables should fail to process" time="0.353419">
4
4
  </testcase>
5
5
  </testsuite>
@@ -1,5 +1,5 @@
1
1
  <?xml version="1.0" encoding="UTF-8"?>
2
- <testsuite name="OpenStudio::Analysis::Translator::Excel small list of variables should not validate" tests="1" time="0.377438" failures="0" errors="0" skipped="0" timestamp="2014-11-08T02:22:04-07:00">
3
- <testcase name="OpenStudio::Analysis::Translator::Excel small list of variables should not validate should fail to process" time="0.309199">
2
+ <testsuite name="OpenStudio::Analysis::Translator::Excel small list of variables should not validate" tests="1" time="0.441432" failures="0" errors="0" skipped="0" timestamp="2015-01-06T07:36:39-07:00">
3
+ <testcase name="OpenStudio::Analysis::Translator::Excel small list of variables should not validate should fail to process" time="0.364855">
4
4
  </testcase>
5
5
  </testsuite>
@@ -1,12 +1,12 @@
1
1
  <?xml version="1.0" encoding="UTF-8"?>
2
- <testsuite name="OpenStudio::Analysis::Translator::Excel small list of variables" tests="4" time="0.403726" failures="0" errors="0" skipped="0" timestamp="2014-11-08T02:22:05-07:00">
3
- <testcase name="OpenStudio::Analysis::Translator::Excel small list of variables should have a model" time="0.000193">
2
+ <testsuite name="OpenStudio::Analysis::Translator::Excel small list of variables" tests="4" time="0.449821" failures="0" errors="0" skipped="0" timestamp="2015-01-06T07:36:39-07:00">
3
+ <testcase name="OpenStudio::Analysis::Translator::Excel small list of variables should have a model" time="0.000185">
4
4
  </testcase>
5
- <testcase name="OpenStudio::Analysis::Translator::Excel small list of variables should have a weather file" time="7.1e-05">
5
+ <testcase name="OpenStudio::Analysis::Translator::Excel small list of variables should have a weather file" time="8.4e-05">
6
6
  </testcase>
7
- <testcase name="OpenStudio::Analysis::Translator::Excel small list of variables should have notes and source" time="6.7e-05">
7
+ <testcase name="OpenStudio::Analysis::Translator::Excel small list of variables should have notes and source" time="7.2e-05">
8
8
  </testcase>
9
- <testcase name="OpenStudio::Analysis::Translator::Excel small list of variables should write a json" time="0.034008">
9
+ <testcase name="OpenStudio::Analysis::Translator::Excel small list of variables should write a json" time="0.040363">
10
10
  </testcase>
11
11
  <system-out>
12
12
  /Users/nlong/working/OpenStudio-analysis-gem/spec/files/partial_weather.epw
@@ -14,4 +14,27 @@ Creating JSON and ZIP file for Example Analysis:small_seed
14
14
  Adding measure /Users/nlong/working/OpenStudio-analysis-gem/spec/files/measures/reduce_lighting_loads_by_percentage to zip file
15
15
  Adding measure /Users/nlong/working/OpenStudio-analysis-gem/spec/files/measures/example_measure_auto_directory_name to zip file
16
16
  </system-out>
17
+ <system-err>
18
+ Deprecation Warning. In Version 0.5 the _uncertain text will be removed from distribution types: triangle_uncertain
19
+ Deprecation Warning. RubyContinuousVariable (OpenStudio called this the variable_type) is no longer persisted
20
+ Deprecation Warning. workflow_step_type is no longer persisted
21
+ Deprecation Warning. In Version 0.5 the _uncertain text will be removed from distribution types: uniform_uncertain
22
+ Deprecation Warning. RubyContinuousVariable (OpenStudio called this the variable_type) is no longer persisted
23
+ Deprecation Warning. workflow_step_type is no longer persisted
24
+ Deprecation Warning. In Version 0.5 the _uncertain text will be removed from distribution types: uniform_uncertain
25
+ Deprecation Warning. RubyContinuousVariable (OpenStudio called this the variable_type) is no longer persisted
26
+ Deprecation Warning. workflow_step_type is no longer persisted
27
+ Deprecation Warning. In Version 0.5 the _uncertain text will be removed from distribution types: uniform_uncertain
28
+ Deprecation Warning. RubyContinuousVariable (OpenStudio called this the variable_type) is no longer persisted
29
+ Deprecation Warning. workflow_step_type is no longer persisted
30
+ Deprecation Warning. In Version 0.5 the _uncertain text will be removed from distribution types: triangle_uncertain
31
+ Deprecation Warning. RubyContinuousVariable (OpenStudio called this the variable_type) is no longer persisted
32
+ Deprecation Warning. workflow_step_type is no longer persisted
33
+ Deprecation Warning. In Version 0.5 the _uncertain text will be removed from distribution types: triangle_uncertain
34
+ Deprecation Warning. RubyContinuousVariable (OpenStudio called this the variable_type) is no longer persisted
35
+ Deprecation Warning. workflow_step_type is no longer persisted
36
+ Deprecation Warning. In Version 0.5 the _uncertain text will be removed from distribution types: triangle_uncertain
37
+ Deprecation Warning. RubyContinuousVariable (OpenStudio called this the variable_type) is no longer persisted
38
+ Deprecation Warning. workflow_step_type is no longer persisted
39
+ </system-err>
17
40
  </testsuite>
@@ -1,5 +1,5 @@
1
1
  <?xml version="1.0" encoding="UTF-8"?>
2
- <testsuite name="OpenStudio::Analysis::Translator::Excel small list with with repeated variable names" tests="1" time="0.391323" failures="0" errors="0" skipped="0" timestamp="2014-11-08T02:22:04-07:00">
3
- <testcase name="OpenStudio::Analysis::Translator::Excel small list with with repeated variable names should fail to process" time="0.320253">
2
+ <testsuite name="OpenStudio::Analysis::Translator::Excel small list with with repeated variable names" tests="1" time="0.423443" failures="0" errors="0" skipped="0" timestamp="2015-01-06T07:36:39-07:00">
3
+ <testcase name="OpenStudio::Analysis::Translator::Excel small list with with repeated variable names should fail to process" time="0.346628">
4
4
  </testcase>
5
5
  </testsuite>
@@ -1,8 +1,8 @@
1
1
  <?xml version="1.0" encoding="UTF-8"?>
2
- <testsuite name="OpenStudio::Analysis::Translator::Excel version 0.1.10" tests="2" time="0.390028" failures="0" errors="0" skipped="0" timestamp="2014-11-08T02:22:07-07:00">
3
- <testcase name="OpenStudio::Analysis::Translator::Excel version 0.1.10 should process" time="0.313213">
2
+ <testsuite name="OpenStudio::Analysis::Translator::Excel version 0.1.10" tests="2" time="0.381755" failures="0" errors="0" skipped="0" timestamp="2015-01-06T07:36:42-07:00">
3
+ <testcase name="OpenStudio::Analysis::Translator::Excel version 0.1.10 should process" time="0.307547">
4
4
  </testcase>
5
- <testcase name="OpenStudio::Analysis::Translator::Excel version 0.1.10 should have new setting variables" time="0.000144">
5
+ <testcase name="OpenStudio::Analysis::Translator::Excel version 0.1.10 should have new setting variables" time="0.000164">
6
6
  </testcase>
7
7
  <system-out>
8
8
  {"spreadsheet_version"=&gt;"0.1.10", "user_id"=&gt;"new_user", "openstudio_server_version"=&gt;"1.3.2", "cluster_name"=&gt;"Analysis Cluster", "server_instance_type"=&gt;"m2.xlarge", "worker_instance_type"=&gt;"m2.2xlarge", "worker_nodes"=&gt;1.0}
@@ -1,18 +1,25 @@
1
1
  <?xml version="1.0" encoding="UTF-8"?>
2
- <testsuite name="OpenStudio::Analysis::Translator::Excel version 0.2.0 simple" tests="4" time="0.418062" failures="0" errors="0" skipped="0" timestamp="2014-11-08T02:22:09-07:00">
3
- <testcase name="OpenStudio::Analysis::Translator::Excel version 0.2.0 simple should process" time="0.30836">
2
+ <testsuite name="OpenStudio::Analysis::Translator::Excel version 0.2.0 simple" tests="4" time="0.410976" failures="0" errors="0" skipped="0" timestamp="2015-01-06T07:36:44-07:00">
3
+ <testcase name="OpenStudio::Analysis::Translator::Excel version 0.2.0 simple should process" time="0.321746">
4
4
  </testcase>
5
- <testcase name="OpenStudio::Analysis::Translator::Excel version 0.2.0 simple should have new setting variables" time="0.000146">
5
+ <testcase name="OpenStudio::Analysis::Translator::Excel version 0.2.0 simple should have new setting variables" time="0.000144">
6
6
  </testcase>
7
- <testcase name="OpenStudio::Analysis::Translator::Excel version 0.2.0 simple should have the new measure directory column" time="8.2e-05">
7
+ <testcase name="OpenStudio::Analysis::Translator::Excel version 0.2.0 simple should have the new measure directory column" time="9.5e-05">
8
8
  </testcase>
9
- <testcase name="OpenStudio::Analysis::Translator::Excel version 0.2.0 simple should write a json" time="0.024413">
9
+ <testcase name="OpenStudio::Analysis::Translator::Excel version 0.2.0 simple should write a json" time="0.011264">
10
10
  </testcase>
11
11
  <system-out>
12
12
  {"spreadsheet_version"=&gt;"0.2.0", "user_id"=&gt;"new_user", "openstudio_server_version"=&gt;"1.3.2", "cluster_name"=&gt;"Analysis Cluster", "server_instance_type"=&gt;"m2.2xlarge", "worker_instance_type"=&gt;"cc2.8xlarge", "worker_nodes"=&gt;2.0}
13
13
  {"analysis_name"=&gt;"simple_test", "measure_directory"=&gt;"../../spec/files/measures", "export_directory"=&gt;"../../spec/files/export/analysis", "allow_multiple_jobs"=&gt;true, "use_server_as_worker"=&gt;true, "simulate_data_point_filename"=&gt;"simulate_data_point.rb", "run_data_point_filename"=&gt;"run_openstudio_workflow_monthly.rb"}
14
- Warning: 'baseline:Baseline' static value was empty or null, assuming optional and skipping
15
14
  Creating JSON and ZIP file for simple_test:0_2_0_template_simpletest
16
15
  Adding measure /Users/nlong/working/OpenStudio-analysis-gem/spec/files/measures/ExampleMeasure to zip file
17
16
  </system-out>
17
+ <system-err>
18
+ Deprecation Warning. In Version 0.5 the _uncertain text will be removed from distribution types: discrete_uncertain
19
+ Deprecation Warning. RubyContinuousVariable (OpenStudio called this the variable_type) is no longer persisted
20
+ Deprecation Warning. workflow_step_type is no longer persisted
21
+ Deprecation Warning. In Version 0.5 the _uncertain text will be removed from distribution types: discrete_uncertain
22
+ Deprecation Warning. RubyContinuousVariable (OpenStudio called this the variable_type) is no longer persisted
23
+ Deprecation Warning. workflow_step_type is no longer persisted
24
+ </system-err>
18
25
  </testsuite>
@@ -1,12 +1,12 @@
1
1
  <?xml version="1.0" encoding="UTF-8"?>
2
- <testsuite name="OpenStudio::Analysis::Translator::Excel version 0.2.0" tests="4" time="0.915353" failures="0" errors="0" skipped="0" timestamp="2014-11-08T02:22:08-07:00">
3
- <testcase name="OpenStudio::Analysis::Translator::Excel version 0.2.0 should process" time="0.796974">
2
+ <testsuite name="OpenStudio::Analysis::Translator::Excel version 0.2.0" tests="4" time="0.975664" failures="0" errors="0" skipped="0" timestamp="2015-01-06T07:36:43-07:00">
3
+ <testcase name="OpenStudio::Analysis::Translator::Excel version 0.2.0 should process" time="0.829658">
4
4
  </testcase>
5
- <testcase name="OpenStudio::Analysis::Translator::Excel version 0.2.0 should have new setting variables" time="0.000143">
5
+ <testcase name="OpenStudio::Analysis::Translator::Excel version 0.2.0 should have new setting variables" time="0.000169">
6
6
  </testcase>
7
- <testcase name="OpenStudio::Analysis::Translator::Excel version 0.2.0 should have the new measure directory column" time="9.2e-05">
7
+ <testcase name="OpenStudio::Analysis::Translator::Excel version 0.2.0 should have the new measure directory column" time="6.0e-05">
8
8
  </testcase>
9
- <testcase name="OpenStudio::Analysis::Translator::Excel version 0.2.0 should write a json" time="0.039234">
9
+ <testcase name="OpenStudio::Analysis::Translator::Excel version 0.2.0 should write a json" time="0.062521">
10
10
  </testcase>
11
11
  <system-out>
12
12
  {"spreadsheet_version"=&gt;"0.2.0", "user_id"=&gt;"new_user", "openstudio_server_version"=&gt;"1.3.2", "cluster_name"=&gt;"Analysis Cluster Name", "server_instance_type"=&gt;"m2.2xlarge", "worker_instance_type"=&gt;"cc2.8xlarge", "worker_nodes"=&gt;2.0}
@@ -15,4 +15,54 @@ Creating JSON and ZIP file for Name goes here:medium_office
15
15
  Adding measure /Users/nlong/working/OpenStudio-analysis-gem/spec/files/measures/ReduceLightingLoadsByPercentage to zip file
16
16
  Adding measure /Users/nlong/working/OpenStudio-analysis-gem/spec/files/measures/ExampleMeasure to zip file
17
17
  </system-out>
18
+ <system-err>
19
+ Deprecation Warning. In Version 0.5 the _uncertain text will be removed from distribution types: triangle_uncertain
20
+ Deprecation Warning. RubyContinuousVariable (OpenStudio called this the variable_type) is no longer persisted
21
+ Deprecation Warning. workflow_step_type is no longer persisted
22
+ Deprecation Warning. In Version 0.5 the _uncertain text will be removed from distribution types: triangle_uncertain
23
+ Deprecation Warning. RubyContinuousVariable (OpenStudio called this the variable_type) is no longer persisted
24
+ Deprecation Warning. workflow_step_type is no longer persisted
25
+ Deprecation Warning. In Version 0.5 the _uncertain text will be removed from distribution types: uniform_uncertain
26
+ Deprecation Warning. RubyContinuousVariable (OpenStudio called this the variable_type) is no longer persisted
27
+ Deprecation Warning. workflow_step_type is no longer persisted
28
+ Deprecation Warning. In Version 0.5 the _uncertain text will be removed from distribution types: uniform_uncertain
29
+ Deprecation Warning. RubyContinuousVariable (OpenStudio called this the variable_type) is no longer persisted
30
+ Deprecation Warning. workflow_step_type is no longer persisted
31
+ Deprecation Warning. In Version 0.5 the _uncertain text will be removed from distribution types: uniform_uncertain
32
+ Deprecation Warning. RubyContinuousVariable (OpenStudio called this the variable_type) is no longer persisted
33
+ Deprecation Warning. workflow_step_type is no longer persisted
34
+ Deprecation Warning. In Version 0.5 the _uncertain text will be removed from distribution types: triangle_uncertain
35
+ Deprecation Warning. RubyContinuousVariable (OpenStudio called this the variable_type) is no longer persisted
36
+ Deprecation Warning. workflow_step_type is no longer persisted
37
+ Deprecation Warning. In Version 0.5 the _uncertain text will be removed from distribution types: triangle_uncertain
38
+ Deprecation Warning. RubyContinuousVariable (OpenStudio called this the variable_type) is no longer persisted
39
+ Deprecation Warning. workflow_step_type is no longer persisted
40
+ Deprecation Warning. In Version 0.5 the _uncertain text will be removed from distribution types: triangle_uncertain
41
+ Deprecation Warning. RubyContinuousVariable (OpenStudio called this the variable_type) is no longer persisted
42
+ Deprecation Warning. workflow_step_type is no longer persisted
43
+ Deprecation Warning. In Version 0.5 the _uncertain text will be removed from distribution types: triangle_uncertain
44
+ Deprecation Warning. RubyContinuousVariable (OpenStudio called this the variable_type) is no longer persisted
45
+ Deprecation Warning. workflow_step_type is no longer persisted
46
+ Deprecation Warning. In Version 0.5 the _uncertain text will be removed from distribution types: triangle_uncertain
47
+ Deprecation Warning. RubyContinuousVariable (OpenStudio called this the variable_type) is no longer persisted
48
+ Deprecation Warning. workflow_step_type is no longer persisted
49
+ Deprecation Warning. In Version 0.5 the _uncertain text will be removed from distribution types: triangle_uncertain
50
+ Deprecation Warning. RubyContinuousVariable (OpenStudio called this the variable_type) is no longer persisted
51
+ Deprecation Warning. workflow_step_type is no longer persisted
52
+ Deprecation Warning. In Version 0.5 the _uncertain text will be removed from distribution types: triangle_uncertain
53
+ Deprecation Warning. RubyContinuousVariable (OpenStudio called this the variable_type) is no longer persisted
54
+ Deprecation Warning. workflow_step_type is no longer persisted
55
+ Deprecation Warning. In Version 0.5 the _uncertain text will be removed from distribution types: triangle_uncertain
56
+ Deprecation Warning. RubyContinuousVariable (OpenStudio called this the variable_type) is no longer persisted
57
+ Deprecation Warning. workflow_step_type is no longer persisted
58
+ Deprecation Warning. In Version 0.5 the _uncertain text will be removed from distribution types: triangle_uncertain
59
+ Deprecation Warning. RubyContinuousVariable (OpenStudio called this the variable_type) is no longer persisted
60
+ Deprecation Warning. workflow_step_type is no longer persisted
61
+ Deprecation Warning. In Version 0.5 the _uncertain text will be removed from distribution types: triangle_uncertain
62
+ Deprecation Warning. RubyContinuousVariable (OpenStudio called this the variable_type) is no longer persisted
63
+ Deprecation Warning. workflow_step_type is no longer persisted
64
+ Deprecation Warning. In Version 0.5 the _uncertain text will be removed from distribution types: triangle_uncertain
65
+ Deprecation Warning. RubyContinuousVariable (OpenStudio called this the variable_type) is no longer persisted
66
+ Deprecation Warning. workflow_step_type is no longer persisted
67
+ </system-err>
18
68
  </testsuite>
@@ -1,11 +1,16 @@
1
1
  <?xml version="1.0" encoding="UTF-8"?>
2
- <testsuite name="OpenStudio::Analysis::Translator::Excel version 0.3.0 dynamic uuid assignments" tests="2" time="0.776043" failures="0" errors="0" skipped="0" timestamp="2014-11-08T02:22:11-07:00">
3
- <testcase name="OpenStudio::Analysis::Translator::Excel version 0.3.0 dynamic uuid assignments should process" time="0.567521">
2
+ <testsuite name="OpenStudio::Analysis::Translator::Excel version 0.3.0 dynamic uuid assignments" tests="2" time="0.755477" failures="0" errors="0" skipped="0" timestamp="2015-01-06T07:36:46-07:00">
3
+ <testcase name="OpenStudio::Analysis::Translator::Excel version 0.3.0 dynamic uuid assignments should process" time="0.563953">
4
4
  </testcase>
5
- <testcase name="OpenStudio::Analysis::Translator::Excel version 0.3.0 dynamic uuid assignments should error out with missing measure information" time="0.093293">
5
+ <testcase name="OpenStudio::Analysis::Translator::Excel version 0.3.0 dynamic uuid assignments should error out with missing measure information" time="0.107427">
6
6
  </testcase>
7
7
  <system-out>
8
- Creating JSON and ZIP file for Preflight:10c791ce-cba7-4506-a863-3fb15703889b
8
+ Creating JSON and ZIP file for Preflight:9560f95b-5730-4038-a95b-328c825c596b
9
9
  Adding measure /Users/nlong/working/OpenStudio-analysis-gem/spec/files/measures/IncreaseInsulationRValueForRoofs to zip file
10
10
  </system-out>
11
+ <system-err>
12
+ Deprecation Warning. In Version 0.5 the _uncertain text will be removed from distribution types: uniform_uncertain
13
+ Deprecation Warning. RubyContinuousVariable (OpenStudio called this the variable_type) is no longer persisted
14
+ Deprecation Warning. workflow_step_type is no longer persisted
15
+ </system-err>
11
16
  </testsuite>
@@ -1,10 +1,15 @@
1
1
  <?xml version="1.0" encoding="UTF-8"?>
2
- <testsuite name="OpenStudio::Analysis::Translator::Excel version 0.3.0 measure existence checks" tests="2" time="0.789569" failures="0" errors="0" skipped="0" timestamp="2014-11-08T02:22:10-07:00">
3
- <testcase name="OpenStudio::Analysis::Translator::Excel version 0.3.0 measure existence checks should process" time="0.601033">
2
+ <testsuite name="OpenStudio::Analysis::Translator::Excel version 0.3.0 measure existence checks" tests="2" time="0.768619" failures="0" errors="0" skipped="0" timestamp="2015-01-06T07:36:45-07:00">
3
+ <testcase name="OpenStudio::Analysis::Translator::Excel version 0.3.0 measure existence checks should process" time="0.604487">
4
4
  </testcase>
5
- <testcase name="OpenStudio::Analysis::Translator::Excel version 0.3.0 measure existence checks should error out with missing measure information" time="0.09644">
5
+ <testcase name="OpenStudio::Analysis::Translator::Excel version 0.3.0 measure existence checks should error out with missing measure information" time="0.078092">
6
6
  </testcase>
7
7
  <system-out>
8
8
  Creating JSON and ZIP file for Preflight:0_3_0_outputs
9
9
  </system-out>
10
+ <system-err>
11
+ Deprecation Warning. In Version 0.5 the _uncertain text will be removed from distribution types: uniform_uncertain
12
+ Deprecation Warning. RubyContinuousVariable (OpenStudio called this the variable_type) is no longer persisted
13
+ Deprecation Warning. workflow_step_type is no longer persisted
14
+ </system-err>
10
15
  </testsuite>
@@ -1,12 +1,12 @@
1
1
  <?xml version="1.0" encoding="UTF-8"?>
2
- <testsuite name="OpenStudio::Analysis::Translator::Excel version 0.3.0 objective functions" tests="4" time="0.772851" failures="0" errors="0" skipped="0" timestamp="2014-11-08T02:22:09-07:00">
3
- <testcase name="OpenStudio::Analysis::Translator::Excel version 0.3.0 objective functions should process" time="0.59663">
2
+ <testsuite name="OpenStudio::Analysis::Translator::Excel version 0.3.0 objective functions" tests="4" time="0.798354" failures="0" errors="0" skipped="0" timestamp="2015-01-06T07:36:44-07:00">
3
+ <testcase name="OpenStudio::Analysis::Translator::Excel version 0.3.0 objective functions should process" time="0.5865">
4
4
  </testcase>
5
- <testcase name="OpenStudio::Analysis::Translator::Excel version 0.3.0 objective functions should have new setting variables" time="0.000129">
5
+ <testcase name="OpenStudio::Analysis::Translator::Excel version 0.3.0 objective functions should have new setting variables" time="0.000137">
6
6
  </testcase>
7
- <testcase name="OpenStudio::Analysis::Translator::Excel version 0.3.0 objective functions should have typed outputs" time="0.002071">
7
+ <testcase name="OpenStudio::Analysis::Translator::Excel version 0.3.0 objective functions should have typed outputs" time="0.007012">
8
8
  </testcase>
9
- <testcase name="OpenStudio::Analysis::Translator::Excel version 0.3.0 objective functions should write a json" time="0.098122">
9
+ <testcase name="OpenStudio::Analysis::Translator::Excel version 0.3.0 objective functions should write a json" time="0.121101">
10
10
  </testcase>
11
11
  <system-out>
12
12
  {"spreadsheet_version"=&gt;"0.3.0", "user_id"=&gt;"new_user", "openstudio_server_version"=&gt;"1.6.1", "cluster_name"=&gt;"Preflight", "server_instance_type"=&gt;"m3.xlarge", "worker_instance_type"=&gt;"c3.2xlarge", "worker_nodes"=&gt;1.0}
@@ -14,4 +14,12 @@
14
14
  Creating JSON and ZIP file for Preflight:0_3_0_outputs
15
15
  Adding measure /Users/nlong/working/OpenStudio-analysis-gem/spec/files/measures/IncreaseInsulationRValueForRoofs to zip file
16
16
  </system-out>
17
+ <system-err>
18
+ Deprecation Warning. In Version 0.5 the _uncertain text will be removed from distribution types: uniform_uncertain
19
+ Deprecation Warning. RubyContinuousVariable (OpenStudio called this the variable_type) is no longer persisted
20
+ Deprecation Warning. workflow_step_type is no longer persisted
21
+ Deprecation Warning. In Version 0.5 the _uncertain text will be removed from distribution types: uniform_uncertain
22
+ Deprecation Warning. RubyContinuousVariable (OpenStudio called this the variable_type) is no longer persisted
23
+ Deprecation Warning. workflow_step_type is no longer persisted
24
+ </system-err>
17
25
  </testsuite>
@@ -1,12 +1,17 @@
1
1
  <?xml version="1.0" encoding="UTF-8"?>
2
- <testsuite name="OpenStudio::Analysis::Translator::Excel version 0.3.3 and short display names" tests="2" time="0.783364" failures="0" errors="0" skipped="0" timestamp="2014-11-08T02:22:12-07:00">
3
- <testcase name="OpenStudio::Analysis::Translator::Excel version 0.3.3 and short display names should process" time="0.60149">
2
+ <testsuite name="OpenStudio::Analysis::Translator::Excel version 0.3.3 and short display names" tests="2" time="0.801134" failures="0" errors="0" skipped="0" timestamp="2015-01-06T07:36:47-07:00">
3
+ <testcase name="OpenStudio::Analysis::Translator::Excel version 0.3.3 and short display names should process" time="0.607148">
4
4
  </testcase>
5
- <testcase name="OpenStudio::Analysis::Translator::Excel version 0.3.3 and short display names should process and save short display names" time="0.094322">
5
+ <testcase name="OpenStudio::Analysis::Translator::Excel version 0.3.3 and short display names should process and save short display names" time="0.106234">
6
6
  </testcase>
7
7
  <system-out>
8
- Creating JSON and ZIP file for Preflight:6d6a08db-fdf8-4bb5-8ad3-18c471418c72
8
+ Creating JSON and ZIP file for Preflight:276ccf51-ed22-4604-a380-8985cec5efe8
9
9
  Adding measure /Users/nlong/working/OpenStudio-analysis-gem/spec/files/measures/IncreaseInsulationRValueForRoofs to zip file
10
10
  Adding measure /Users/nlong/working/OpenStudio-analysis-gem/spec/files/measures/ExampleMeasure to zip file
11
11
  </system-out>
12
+ <system-err>
13
+ Deprecation Warning. In Version 0.5 the _uncertain text will be removed from distribution types: uniform_uncertain
14
+ Deprecation Warning. RubyContinuousVariable (OpenStudio called this the variable_type) is no longer persisted
15
+ Deprecation Warning. workflow_step_type is no longer persisted
16
+ </system-err>
12
17
  </testsuite>
@@ -1,13 +1,18 @@
1
1
  <?xml version="1.0" encoding="UTF-8"?>
2
- <testsuite name="OpenStudio::Analysis::Translator::Excel version 0.3.5 and measure paths" tests="2" time="0.77906" failures="0" errors="0" skipped="0" timestamp="2014-11-08T02:22:12-07:00">
3
- <testcase name="OpenStudio::Analysis::Translator::Excel version 0.3.5 and measure paths should process" time="0.597613">
2
+ <testsuite name="OpenStudio::Analysis::Translator::Excel version 0.3.5 and measure paths" tests="2" time="0.804367" failures="0" errors="0" skipped="0" timestamp="2015-01-06T07:36:47-07:00">
3
+ <testcase name="OpenStudio::Analysis::Translator::Excel version 0.3.5 and measure paths should process" time="0.609244">
4
4
  </testcase>
5
- <testcase name="OpenStudio::Analysis::Translator::Excel version 0.3.5 and measure paths should save the analysis" time="0.092069">
5
+ <testcase name="OpenStudio::Analysis::Translator::Excel version 0.3.5 and measure paths should save the analysis" time="0.107273">
6
6
  </testcase>
7
7
  <system-out>
8
- Creating JSON and ZIP file for Preflight:55086845-70cf-487f-87f6-7a147cbf1e72
8
+ Creating JSON and ZIP file for Preflight:c50f0062-cdfb-4dec-bc02-215f6c29af3c
9
9
  Adding measure /Users/nlong/working/OpenStudio-analysis-gem/spec/files/measures/IncreaseInsulationRValueForRoofs to zip file
10
10
  Adding measure /Users/nlong/working/OpenStudio-analysis-gem/spec/files/measures_second_path/measure_in_another_dir to zip file
11
11
  Adding measure /Users/nlong/working/OpenStudio-analysis-gem/spec/files/measures/ExampleMeasure to zip file
12
12
  </system-out>
13
+ <system-err>
14
+ Deprecation Warning. In Version 0.5 the _uncertain text will be removed from distribution types: uniform_uncertain
15
+ Deprecation Warning. RubyContinuousVariable (OpenStudio called this the variable_type) is no longer persisted
16
+ Deprecation Warning. workflow_step_type is no longer persisted
17
+ </system-err>
13
18
  </testsuite>
@@ -1,5 +1,43 @@
1
1
  <?xml version="1.0" encoding="UTF-8"?>
2
- <testsuite name="OpenStudio::Analysis::Translator::Excel version 0.3.7 and worker init-final scripts" tests="1" time="0.726757" failures="0" errors="0" skipped="0" timestamp="2014-11-08T02:22:14-07:00">
3
- <testcase name="OpenStudio::Analysis::Translator::Excel version 0.3.7 and worker init-final scripts should fail to process" time="0.628265">
2
+ <testsuite name="OpenStudio::Analysis::Translator::Excel version 0.3.7 and worker init-final scripts" tests="1" time="0.862108" failures="0" errors="0" skipped="0" timestamp="2015-01-06T07:36:49-07:00">
3
+ <testcase name="OpenStudio::Analysis::Translator::Excel version 0.3.7 and worker init-final scripts should fail to process" time="0.775531">
4
4
  </testcase>
5
+ <system-out>
6
+ Warning: 'overhangs_pf_south:construction' static value was empty or null, assuming optional and skipping
7
+ Warning: 'overhangs_pf_east:construction' static value was empty or null, assuming optional and skipping
8
+ Creating JSON and ZIP file for LHS Discrete and Continuous Variables:Discrete LHS Example
9
+ Adding measure /Users/nlong/working/OpenStudio-analysis-gem/spec/files/measures/SetThermostatSchedules to zip file
10
+ </system-out>
11
+ <system-err>
12
+ Deprecation Warning. In Version 0.5 the _uncertain text will be removed from distribution types: triangle_uncertain
13
+ Deprecation Warning. RubyContinuousVariable (OpenStudio called this the variable_type) is no longer persisted
14
+ Deprecation Warning. workflow_step_type is no longer persisted
15
+ Deprecation Warning. In Version 0.5 the _uncertain text will be removed from distribution types: uniform_uncertain
16
+ Deprecation Warning. RubyContinuousVariable (OpenStudio called this the variable_type) is no longer persisted
17
+ Deprecation Warning. workflow_step_type is no longer persisted
18
+ Deprecation Warning. In Version 0.5 the _uncertain text will be removed from distribution types: normal_uncertain
19
+ Deprecation Warning. RubyContinuousVariable (OpenStudio called this the variable_type) is no longer persisted
20
+ Deprecation Warning. workflow_step_type is no longer persisted
21
+ Deprecation Warning. In Version 0.5 the _uncertain text will be removed from distribution types: discrete_uncertain
22
+ Deprecation Warning. RubyContinuousVariable (OpenStudio called this the variable_type) is no longer persisted
23
+ Deprecation Warning. workflow_step_type is no longer persisted
24
+ Deprecation Warning. In Version 0.5 the _uncertain text will be removed from distribution types: triangle_uncertain
25
+ Deprecation Warning. RubyContinuousVariable (OpenStudio called this the variable_type) is no longer persisted
26
+ Deprecation Warning. workflow_step_type is no longer persisted
27
+ Deprecation Warning. In Version 0.5 the _uncertain text will be removed from distribution types: triangle_uncertain
28
+ Deprecation Warning. RubyContinuousVariable (OpenStudio called this the variable_type) is no longer persisted
29
+ Deprecation Warning. workflow_step_type is no longer persisted
30
+ Deprecation Warning. In Version 0.5 the _uncertain text will be removed from distribution types: triangle_uncertain
31
+ Deprecation Warning. RubyContinuousVariable (OpenStudio called this the variable_type) is no longer persisted
32
+ Deprecation Warning. workflow_step_type is no longer persisted
33
+ Deprecation Warning. In Version 0.5 the _uncertain text will be removed from distribution types: discrete_uncertain
34
+ Deprecation Warning. RubyContinuousVariable (OpenStudio called this the variable_type) is no longer persisted
35
+ Deprecation Warning. workflow_step_type is no longer persisted
36
+ Deprecation Warning. In Version 0.5 the _uncertain text will be removed from distribution types: uniform_uncertain
37
+ Deprecation Warning. RubyContinuousVariable (OpenStudio called this the variable_type) is no longer persisted
38
+ Deprecation Warning. workflow_step_type is no longer persisted
39
+ Deprecation Warning. In Version 0.5 the _uncertain text will be removed from distribution types: discrete_uncertain
40
+ Deprecation Warning. RubyContinuousVariable (OpenStudio called this the variable_type) is no longer persisted
41
+ Deprecation Warning. workflow_step_type is no longer persisted
42
+ </system-err>
5
43
  </testsuite>
@@ -1,13 +1,18 @@
1
1
  <?xml version="1.0" encoding="UTF-8"?>
2
- <testsuite name="OpenStudio::Analysis::Translator::Excel version 0.3.7 and worker init-final scripts" tests="2" time="0.790329" failures="0" errors="0" skipped="0" timestamp="2014-11-08T02:22:13-07:00">
3
- <testcase name="OpenStudio::Analysis::Translator::Excel version 0.3.7 and worker init-final scripts should process" time="0.599633">
2
+ <testsuite name="OpenStudio::Analysis::Translator::Excel version 0.3.7 and worker init-final scripts" tests="2" time="0.823913" failures="0" errors="0" skipped="0" timestamp="2015-01-06T07:36:48-07:00">
3
+ <testcase name="OpenStudio::Analysis::Translator::Excel version 0.3.7 and worker init-final scripts should process" time="0.62217">
4
4
  </testcase>
5
- <testcase name="OpenStudio::Analysis::Translator::Excel version 0.3.7 and worker init-final scripts should save the analysis" time="0.099592">
5
+ <testcase name="OpenStudio::Analysis::Translator::Excel version 0.3.7 and worker init-final scripts should save the analysis" time="0.114058">
6
6
  </testcase>
7
7
  <system-out>
8
- Creating JSON and ZIP file for Preflight:f028bfbe-e30e-488d-adad-a60a62bbf7e0
8
+ Creating JSON and ZIP file for Preflight:639cb8a5-cdbb-4b69-955a-cbb650f6872b
9
9
  Adding measure /Users/nlong/working/OpenStudio-analysis-gem/spec/files/measures/IncreaseInsulationRValueForRoofs to zip file
10
10
  Adding measure /Users/nlong/working/OpenStudio-analysis-gem/spec/files/measures_second_path/measure_in_another_dir to zip file
11
11
  Adding measure /Users/nlong/working/OpenStudio-analysis-gem/spec/files/measures/ExampleMeasure to zip file
12
12
  </system-out>
13
+ <system-err>
14
+ Deprecation Warning. In Version 0.5 the _uncertain text will be removed from distribution types: uniform_uncertain
15
+ Deprecation Warning. RubyContinuousVariable (OpenStudio called this the variable_type) is no longer persisted
16
+ Deprecation Warning. workflow_step_type is no longer persisted
17
+ </system-err>
13
18
  </testsuite>
@@ -1,3 +1,3 @@
1
1
  <?xml version="1.0" encoding="UTF-8"?>
2
- <testsuite name="OpenStudio::Analysis::Translator::Excel" tests="0" time="0.002682" skipped="0" timestamp="2014-11-08T02:22:03-07:00">
2
+ <testsuite name="OpenStudio::Analysis::Translator::Excel" tests="0" time="0.003045" skipped="0" timestamp="2015-01-06T07:36:37-07:00">
3
3
  </testsuite>
@@ -0,0 +1,31 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <testsuite name="OpenStudio::Analysis::Workflow" tests="6" time="0.007488" failures="0" errors="0" skipped="0" timestamp="2015-01-06T07:36:50-07:00">
3
+ <testcase name="OpenStudio::Analysis::Workflow should create a workflow" time="0.000105">
4
+ </testcase>
5
+ <testcase name="OpenStudio::Analysis::Workflow should add a measure" time="0.004069">
6
+ </testcase>
7
+ <testcase name="OpenStudio::Analysis::Workflow should fix the path of the measure" time="0.000399">
8
+ </testcase>
9
+ <testcase name="OpenStudio::Analysis::Workflow should clear out a workflow" time="0.001168">
10
+ </testcase>
11
+ <testcase name="OpenStudio::Analysis::Workflow should find a workflow step" time="0.000599">
12
+ </testcase>
13
+ <testcase name="OpenStudio::Analysis::Workflow should find a workflow step and make a variable" time="0.000679">
14
+ </testcase>
15
+ <system-out>
16
+ loading config settings from /Users/nlong/.bcl/config.yml
17
+ loading config settings from /Users/nlong/.bcl/config.yml
18
+ loading config settings from /Users/nlong/.bcl/config.yml
19
+ loading config settings from /Users/nlong/.bcl/config.yml
20
+ loading config settings from /Users/nlong/.bcl/config.yml
21
+ loading config settings from /Users/nlong/.bcl/config.yml
22
+ loading config settings from /Users/nlong/.bcl/config.yml
23
+ loading config settings from /Users/nlong/.bcl/config.yml
24
+ loading config settings from /Users/nlong/.bcl/config.yml
25
+ loading config settings from /Users/nlong/.bcl/config.yml
26
+ loading config settings from /Users/nlong/.bcl/config.yml
27
+ </system-out>
28
+ <system-err>
29
+ measure.json not found in spec/files/measures/ActualMeasureNoJson, will parse measure file using BCL gem
30
+ </system-err>
31
+ </testsuite>
@@ -0,0 +1,29 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <testsuite name="OpenStudio::Analysis::WorkflowStep" tests="6" time="0.001731" failures="0" errors="0" skipped="0" timestamp="2015-01-06T07:36:50-07:00">
3
+ <testcase name="OpenStudio::Analysis::WorkflowStep should create a workflow" time="0.000165">
4
+ </testcase>
5
+ <testcase name="OpenStudio::Analysis::WorkflowStep should add a measure" time="0.000186">
6
+ </testcase>
7
+ <testcase name="OpenStudio::Analysis::WorkflowStep should tag a discrete variable" time="0.0002">
8
+ </testcase>
9
+ <testcase name="OpenStudio::Analysis::WorkflowStep should tag a continuous variable" time="0.000242">
10
+ </testcase>
11
+ <testcase name="OpenStudio::Analysis::WorkflowStep should tag a normal continuous variable" time="0.000227">
12
+ </testcase>
13
+ <testcase name="OpenStudio::Analysis::WorkflowStep should tag a uniform variable" time="0.000228">
14
+ </testcase>
15
+ <system-out>
16
+ #&lt;OpenStudio::Analysis::WorkflowStep:0x007f955b0e5a68&gt;
17
+ </system-out>
18
+ <system-err>
19
+ Deprecation Warning. In Version 0.5 the _uncertain text will be removed from distribution types: triangle_uncertain
20
+ Deprecation Warning. RubyContinuousVariable (OpenStudio called this the variable_type) is no longer persisted
21
+ Deprecation Warning. workflow_step_type is no longer persisted
22
+ Deprecation Warning. In Version 0.5 the _uncertain text will be removed from distribution types: normal_uncertain
23
+ Deprecation Warning. RubyContinuousVariable (OpenStudio called this the variable_type) is no longer persisted
24
+ Deprecation Warning. workflow_step_type is no longer persisted
25
+ Deprecation Warning. In Version 0.5 the _uncertain text will be removed from distribution types: uniform_uncertain
26
+ Deprecation Warning. RubyContinuousVariable (OpenStudio called this the variable_type) is no longer persisted
27
+ Deprecation Warning. workflow_step_type is no longer persisted
28
+ </system-err>
29
+ </testsuite>
data/spec/spec_helper.rb CHANGED
@@ -1,8 +1,8 @@
1
1
  $LOAD_PATH.unshift(File.dirname(__FILE__))
2
2
  $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
3
3
 
4
- require 'openstudio-analysis'
5
4
  require 'rspec'
5
+ require 'openstudio-analysis'
6
6
 
7
7
  RSpec.configure do |config|
8
8
  # Use color in STDOUT