Sha256: 32efba0cc336c52efd7cde318d9c7ec5d8b2da7bb97a3f8f437213af657c9b1b
Contents?: true
Size: 882 Bytes
Versions: 2
Compression:
Stored size: 882 Bytes
Contents
# ********************************************************************************* # URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. # See also https://github.com/urbanopt/urbanopt-cli/blob/develop/LICENSE.md # ********************************************************************************* # frozen_string_literal: true called_from_cli = true begin OpenStudio.getOpenStudioCLI rescue called_from_cli = false end if ENV['CI'] && !called_from_cli begin require 'simplecov' SimpleCov.coverage_dir(File.join(Dir.getwd, 'coverage')) SimpleCov.formatter = SimpleCov::Formatter::HTMLFormatter SimpleCov.start rescue end end require 'minitest/autorun' require 'minitest/reporters' require 'minitest/reporters/spec_reporter' # Needed when run via OS CLI Minitest::Reporters.use! Minitest::Reporters::SpecReporter.new # spec-like progress
Version data entries
2 entries across 2 versions & 1 rubygems