class documentation

class TestBuildPy(support.TempdirManager): (source)

View In Hierarchy

Undocumented

Method test_byte_compile Undocumented
Method test_byte_compile_optimized Undocumented
Method test_dir_in_package_data A directory in package_data should not be added to the filelist.
Method test_dont_write_bytecode Undocumented
Method test_empty_package_dir Undocumented
Method test_namespace_package_does_not_warn Originally distutils implementation did not account for PEP 420 and included warns for package directories that did not contain ``__init__.py`` files. After the acceptance of PEP 420, these warnings don't make more sense so we want to ensure there are not displayed to not confuse the users.
Method test_package_data Undocumented
@pytest.mark.skipif('sys.dont_write_bytecode')
def test_byte_compile(self): (source)

Undocumented

@pytest.mark.skipif('sys.dont_write_bytecode')
def test_byte_compile_optimized(self): (source)

Undocumented

def test_dir_in_package_data(self): (source)

A directory in package_data should not be added to the filelist.

def test_dont_write_bytecode(self, caplog): (source)

Undocumented

def test_empty_package_dir(self): (source)

Undocumented

def test_namespace_package_does_not_warn(self, caplog): (source)

Originally distutils implementation did not account for PEP 420 and included warns for package directories that did not contain ``__init__.py`` files. After the acceptance of PEP 420, these warnings don't make more sense so we want to ensure there are not displayed to not confuse the users.

def test_package_data(self): (source)

Undocumented