Skip to content

Commit fcaeb40

Browse files
committed
skip coverage dependence checks for electrochem families
1 parent 1c20511 commit fcaeb40

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

testing/databaseTest.py

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -140,12 +140,14 @@ def test_kinetics(self):
140140
test.description = test_name
141141
self.compat_func_name = test_name
142142
yield test, family_name
143-
144-
test = lambda x: self.kinetics_check_coverage_dependence_units_are_correct(family_name)
145-
test_name = "Kinetics surface family {0}: check coverage dependent units are correct?".format(family_name)
146-
test.description = test_name
147-
self.compat_func_name = test_name
148-
yield test, family_name
143+
144+
if family_name not in ["Surface_Proton_Electron_Reduction_Alpha", "Surface_Proton_Electron_Reduction_Beta"
145+
"Surface_Proton_Electron_Reduction_Beta_Dissociation"]:
146+
test = lambda x: self.kinetics_check_coverage_dependence_units_are_correct(family_name)
147+
test_name = "Kinetics surface family {0}: check coverage dependent units are correct?".format(family_name)
148+
test.description = test_name
149+
self.compat_func_name = test_name
150+
yield test, family_name
149151

150152
# these families have some sort of difficulty which prevents us from testing accessibility right now
151153
# See RMG-Py PR #2232 for reason why adding Bimolec_Hydroperoxide_Decomposition here. Bsically some nodes need to be in a ring, but the sampled molecule is not.

0 commit comments

Comments
 (0)