Skip to content

Commit

Permalink
Now ignoring the ignored names in all doc subgroups
Browse files Browse the repository at this point in the history
  • Loading branch information
AKuederle committed Oct 4, 2023
1 parent a807395 commit 4535510
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tpcp/testing/_algorithm_test_mixin.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,6 @@ def test_all_parameters_documented(self):

documented_names = {p.name for p in docs["Parameters"]}
actual_names = set(get_param_names(self.ALGORITHM_CLASS))

actual_names -= set(self._IGNORED_NAMES)

assert documented_names == actual_names
Expand All @@ -120,6 +119,7 @@ def test_all_attributes_documented(self, after_action_instance):

documented_names = {p.name for p in docs["Attributes"]}
actual_names = set(get_results(after_action_instance).keys())
actual_names -= set(self._IGNORED_NAMES)

assert documented_names == actual_names

Expand All @@ -133,6 +133,7 @@ def test_all_other_parameters_documented(self, after_action_instance):

documented_names = {p.name for p in docs["Other Parameters"]}
actual_names = set(get_action_params(after_action_instance).keys())
actual_names -= set(self._IGNORED_NAMES)

assert documented_names == actual_names

Expand Down

0 comments on commit 4535510

Please sign in to comment.