sphinx-autoapi/tests/python
Nathan Glenn 432b9af5d5
Fix keyerror when using markdown sources (#321)
Setting `source_suffix = ".md"` led to the following cryptic error output:

    Handler <function run_autoapi at 0x10841fc10> for event 'builder-inited' threw an exception (exception: 0)

This issue was that `app.config.source_suffix` is an `OrderedDict` object, which cannot be subscripted
using `[0]`, etc. Instead, use `next(iter(...))` to get the first element of the dictionary.
2022-07-25 11:32:11 -07:00
..
py3example Fixed tests in Sphinx 5 2022-07-25 10:20:51 -07:00
py3implicitnamespace Fixed tests in Sphinx 5 2022-07-25 10:20:51 -07:00
py38positionalparams Fixed tests in Sphinx 5 2022-07-25 10:20:51 -07:00
pyannotationcommentsexample Fix comment typehints for methods/classmethods (#300) 2022-07-25 10:27:03 -07:00
pyautodoc_typehints Fix comment typehints for methods/classmethods (#300) 2022-07-25 10:27:03 -07:00
pyemptyexample Fixed tests in Sphinx 5 2022-07-25 10:20:51 -07:00
pyexample Limit signatures to 60 characters in summaries (#311) 2022-07-25 10:30:57 -07:00
pyiexample Fixed tests in Sphinx 5 2022-07-25 10:20:51 -07:00
pyiexample2 Fixed tests in Sphinx 5 2022-07-25 10:20:51 -07:00
pymovedconfpy Fixed failure to build out of source conf.py files 2021-06-25 20:14:33 -07:00
pypackagecomplex Fixed tests in Sphinx 5 2022-07-25 10:20:51 -07:00
pypackageexample Fixed tests in Sphinx 5 2022-07-25 10:20:51 -07:00
pyskipexample Fixed tests in Sphinx 5 2022-07-25 10:20:51 -07:00
test_parser.py Converted tests to pytest style 2021-04-03 19:01:27 -07:00
test_pyintegration.py Fix keyerror when using markdown sources (#321) 2022-07-25 11:32:11 -07:00