@@ -33,8 +33,6 @@ class Comparator(object):
3333 :param branches: A list of branches to compare, such as ``['master', 'issueXXX']``.
3434 :param package: Name of top-level package to compare, such as ``Buildings`` or ``Buildings.Examples``.
3535 :param repo: Name of repository, such as ``https://github.com/lbl-srg/modelica-buildings``.
36- :param skipVerification: Boolean (default ``False``).
37- If ``True``, unit test results are not verified against reference points.
3836 :param nPro: Number of threads that are used to run the translations and simulations.
3937 Set to ``0`` to use all processors.
4038 :param tolAbsTim: float (default ``0.1``). Absolute tolerance in time, if exceeded, results will be flagged in summary table.
@@ -55,7 +53,6 @@ class Comparator(object):
5553 ... branches=['master'],
5654 ... package='Buildings',
5755 ... repo='https://github.com/lbl-srg/modelica-buildings',
58- ... skipVerification = True,
5956 ... postCloneCommand=[
6057 ... "python",
6158 ... "Buildings/Resources/src/ThermalZones/install.py",
@@ -87,7 +84,6 @@ def __init__(
8784 branches ,
8885 package ,
8986 repo ,
90- skipVerification = False ,
9187 nPro = 0 ,
9288 simulate = True ,
9389 tolAbsTime = 0.1 ,
@@ -99,7 +95,6 @@ def __init__(
9995 self ._branches = branches
10096 self ._package = package
10197 self ._lib_src = repo
102- self ._skip_verification = skipVerification
10398 self ._nPro = nPro
10499 self ._tolAbsTime = tolAbsTime
105100 self ._tolRelTime = tolRelTime
@@ -180,9 +175,7 @@ def _runUnitTest(self, package, tool):
180175 else :
181176 num_pro = f"-n { self ._nPro } "
182177
183- ski_ver = f"--skip-verification" if {self ._skip_verification } else ""
184-
185- command = f"../bin/runUnitTests.py { single_package } { ski_ver } { num_pro } -t { tool } --batch"
178+ command = f"../bin/runUnitTests.py { single_package } { num_pro } -t { tool } --batch"
186179 try :
187180 os .system (command )
188181 except OSError :
0 commit comments