class documentation

class TestModuleFinder: (source)

View In Hierarchy

Undocumented

Method find Undocumented
Method test_finder Undocumented
Method test_symlinked_packages_are_included Undocumented
Constant EXAMPLES Undocumented
def find(self, path, *args, **kwargs): (source)

Undocumented

@pytest.mark.parametrize('example', EXAMPLES.keys())
def test_finder(self, tmp_path, example): (source)

Undocumented

@pytest.mark.skipif(not has_symlink(), reason='Symlink support required')
def test_symlinked_packages_are_included(self, tmp_path): (source)

Undocumented

Undocumented

Value
{'simple_folder': (['file.py', 'other.py'], {}, ['file', 'other']),
 'exclude': (['file.py', 'other.py'], {'exclude': ['f*']}, ['other']),
 'include': (['file.py', 'fole.py', 'other.py'],
             {'include': ['f*'], 'exclude': ['fo*']},
             ['file']),
 'invalid-name': (['my-file.py', 'other.file.py'], {}, [])}