You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
sphinx-autoapi/tests
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.
2 years ago
..
dotnetexample Fixed tests in Sphinx 5 2 years ago
fixtures Fix outdated fixture data 9 years ago
goexample Fixed tests in Sphinx 5 2 years ago
jsexample Fixed tests in Sphinx 5 2 years ago
python Fix keyerror when using markdown sources (#321) 2 years ago
templateexample Fixed tests in Sphinx 5 2 years ago
toctreeexample Fixed tests in Sphinx 5 2 years ago
test_astroid_utils.py Converted tests to pytest style 4 years ago
test_domains.py Refactored dotnet error to raise an exception properly 4 years ago
test_integration.py Converted tests to pytest style 4 years ago
test_objects.py Updated to latest black formatting 3 years ago