Skip to content

Commit

Permalink
skip kinetics_check_groups_nonidentical for auto generated families
Browse files Browse the repository at this point in the history
autogen trees should not have identical groups, so this test is unnecessary
  • Loading branch information
davidfarinajr committed Nov 7, 2021
1 parent 11f461c commit fc0cd43
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions testing/databaseTest.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,11 +89,12 @@ def test_kinetics(self):
self.compat_func_name = test_name
yield test, None

test = lambda x: self.kinetics_check_groups_nonidentical(family_name)
test_name = "Kinetics family {0}: groups are not identical?".format(family_name)
test.description = test_name
self.compat_func_name = test_name
yield test, family_name
if not family.auto_generated:
test = lambda x: self.kinetics_check_groups_nonidentical(family_name)
test_name = "Kinetics family {0}: groups are not identical?".format(family_name)
test.description = test_name
self.compat_func_name = test_name
yield test, family_name

test = lambda x: self.kinetics_check_child_parent_relationships(family_name)
test_name = "Kinetics family {0}: parent-child relationships are correct?".format(family_name)
Expand Down

0 comments on commit fc0cd43

Please sign in to comment.