Skip to content

Commit f7c5255

Browse files
committed
chemistry
1 parent 36cc17f commit f7c5255

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

toolchain/mfc/test/test.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,8 @@ def __filter(cases_) -> typing.List[TestCase]:
5959

6060
for case in cases[:]:
6161
if ARG("single"):
62-
skip = ['low_Mach', 'Hypoelasticity', 'teno', 'Non_polytropic']
63-
if any(label in case.trace for label in skip) or ('3D' in case.trace and 'QBBM' in case.trace):
62+
skip = ['low_Mach', 'Hypoelasticity', 'teno', 'Chemistry', 'Phase Change model 6']
63+
if any(label in case.trace for label in skip):
6464
cases.remove(case)
6565

6666

@@ -248,7 +248,7 @@ def handle_case(case: TestCase, devices: typing.Set[int]):
248248
global errors
249249

250250
nAttempts = 0
251-
if ARG('single'):
251+
if ARG('single') and ARG('test_all'):
252252
max_attempts = max(ARG('max_attempts'), 20)
253253
else:
254254
max_attempts = ARG('max_attempts')

0 commit comments

Comments
 (0)