sphinx-contrib / matlabdomain

A Sphinx extension for documenting Matlab code
Other
64 stars 45 forks source link

Some class property attributes seem to be missing #251

Closed TobiasHolicki closed 1 month ago

TobiasHolicki commented 1 month ago

Hi, Some test class property attributes are not recognized. For example, running sphinx to autodoc the following class

classdef Test < matlab.unittest.TestCase     
    methods(Test, TestTags = {'Unit'})
        function testRunning()
            %
        end
    end
end

results in the warning WARNING: [sphinxcontrib-matlabdomain] Unexpected class attribute: 'TestTags'. In 'src.Test'..