Skip to content

Commit

Permalink
Do not use "Tests" sections in classes
Browse files Browse the repository at this point in the history
  • Loading branch information
mhostetter committed Jul 14, 2022
1 parent dd9476f commit 7a50cc1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -238,8 +238,8 @@
(r"method:.*\.__[A-Za-z,_]*__", "Special methods"),
(r"method:.*\.__(init|new)__", "Constructors"),
(r"method:.*\.__(str|repr)__", "String representation"),
(r"method:.*\.is_[a-z,_]*", "Tests"),
(r"property:.*\.is_[a-z,_]*", "Tests"),
# (r"method:.*\.is_[a-z,_]*", "Tests"),
# (r"property:.*\.is_[a-z,_]*", "Tests"),
]
python_apigen_default_order = [
("class:.*", 10),
Expand All @@ -252,8 +252,8 @@
(r"method:.*\.__[A-Za-z,_]*__", 23),
(r"method:.*\.__(init|new)__", 20),
(r"method:.*\.__(str|repr)__", 21),
(r"method:.*\.is_[a-z,_]*", 31),
(r"property:.*\.is_[a-z,_]*", 32),
# (r"method:.*\.is_[a-z,_]*", 31),
# (r"property:.*\.is_[a-z,_]*", 32),
]
python_apigen_order_tiebreaker = "alphabetical"
python_apigen_case_insensitive_filesystem = False
Expand Down

0 comments on commit 7a50cc1

Please sign in to comment.