By pyctest doesn't seem to follow any convention. The functions and classes are all randomly either CamelCase or lower_with_underscores. This makes reading calls to the API difficult to read.
Anything with a direct corollary to CMake/CTest follows CamelCase. If not, lower with underscores. I'm hesitant to change the API but I'll take that into consideration.
Generally, we follow the PEP8 convention for naming things in Python.
For example:
By pyctest doesn't seem to follow any convention. The functions and classes are all randomly either CamelCase or lower_with_underscores. This makes reading calls to the API difficult to read.