当前位置: 首页>>代码示例>>Python>>正文


Python bdist.bdist方法代码示例

本文整理汇总了Python中distutils.command.bdist.bdist方法的典型用法代码示例。如果您正苦于以下问题:Python bdist.bdist方法的具体用法?Python bdist.bdist怎么用?Python bdist.bdist使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在distutils.command.bdist的用法示例。


在下文中一共展示了bdist.bdist方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: test_skip_build

# 需要导入模块: from distutils.command import bdist [as 别名]
# 或者: from distutils.command.bdist import bdist [as 别名]
def test_skip_build(self):
        # bug #10946: bdist --skip-build should trickle down to subcommands
        dist = self.create_dist()[1]
        cmd = bdist(dist)
        cmd.skip_build = 1
        cmd.ensure_finalized()
        dist.command_obj['bdist'] = cmd

        names = ['bdist_dumb', 'bdist_wininst']
        # bdist_rpm does not support --skip-build
        if os.name == 'nt':
            names.append('bdist_msi')

        for name in names:
            subcmd = cmd.get_finalized_command(name)
            self.assertTrue(subcmd.skip_build,
                            '%s should take --skip-build from bdist' % name) 
开发者ID:IronLanguages,项目名称:ironpython2,代码行数:19,代码来源:test_bdist.py

示例2: test_formats

# 需要导入模块: from distutils.command import bdist [as 别名]
# 或者: from distutils.command.bdist import bdist [as 别名]
def test_formats(self):

        # let's create a command and make sure
        # we can fix the format
        pkg_pth, dist = self.create_dist()
        cmd = bdist(dist)
        cmd.formats = ['msi']
        cmd.ensure_finalized()
        self.assertEqual(cmd.formats, ['msi'])

        # what format bdist offers ?
        # XXX an explicit list in bdist is
        # not the best way to  bdist_* commands
        # we should add a registry
        formats = ['rpm', 'zip', 'gztar', 'bztar', 'ztar',
                   'tar', 'wininst', 'msi']
        formats.sort()
        founded = cmd.format_command.keys()
        founded.sort()
        self.assertEqual(founded, formats) 
开发者ID:ktraunmueller,项目名称:Computable,代码行数:22,代码来源:test_bdist.py

示例3: test_skip_build

# 需要导入模块: from distutils.command import bdist [as 别名]
# 或者: from distutils.command.bdist import bdist [as 别名]
def test_skip_build(self):
        # bug #10946: bdist --skip-build should trickle down to subcommands
        dist = self.create_dist()[1]
        cmd = bdist(dist)
        cmd.skip_build = 1
        cmd.ensure_finalized()
        dist.command_obj['bdist'] = cmd

        names = ['bdist_dumb', 'bdist_wininst']  # bdist_rpm does not support --skip-build
        if os.name == 'nt':
            names.append('bdist_msi')

        for name in names:
            subcmd = cmd.get_finalized_command(name)
            self.assertTrue(subcmd.skip_build,
                            '%s should take --skip-build from bdist' % name) 
开发者ID:Microvellum,项目名称:Fluid-Designer,代码行数:18,代码来源:test_bdist.py

示例4: test_skip_build

# 需要导入模块: from distutils.command import bdist [as 别名]
# 或者: from distutils.command.bdist import bdist [as 别名]
def test_skip_build(self):
        # bug #10946: bdist --skip-build should trickle down to subcommands
        dist = self.create_dist()[1]
        cmd = bdist(dist)
        cmd.skip_build = 1
        cmd.ensure_finalized()
        dist.command_obj['bdist'] = cmd

        names = ['bdist_dumb', 'bdist_wininst']  # bdist_rpm does not support --skip-build
        if os.name == 'nt':
            names.append('bdist_msi')

        for name in names:
            subcmd = cmd.get_finalized_command(name)
            if getattr(subcmd, '_unsupported', False):
                # command is not supported on this build
                continue
            self.assertTrue(subcmd.skip_build,
                            '%s should take --skip-build from bdist' % name) 
开发者ID:CedricGuillemet,项目名称:Imogen,代码行数:21,代码来源:test_bdist.py

示例5: test_skip_build

# 需要导入模块: from distutils.command import bdist [as 别名]
# 或者: from distutils.command.bdist import bdist [as 别名]
def test_skip_build(self):
        # bug #10946: bdist --skip-build should trickle down to subcommands
        dist = self.create_dist()[1]
        cmd = bdist(dist)
        cmd.skip_build = 1
        cmd.ensure_finalized()
        dist.command_obj['bdist'] = cmd

        names = ['bdist_dumb', 'bdist_wininst']  # bdist_rpm does not support --skip-build
        if os.name == 'nt':
            names.append('bdist_msi')

        for name in names:
            with warnings.catch_warnings():
                warnings.filterwarnings('ignore', 'bdist_wininst command is deprecated',
                                        DeprecationWarning)
                subcmd = cmd.get_finalized_command(name)
            if getattr(subcmd, '_unsupported', False):
                # command is not supported on this build
                continue
            self.assertTrue(subcmd.skip_build,
                            '%s should take --skip-build from bdist' % name) 
开发者ID:pypa,项目名称:setuptools,代码行数:24,代码来源:test_bdist.py

示例6: test_formats

# 需要导入模块: from distutils.command import bdist [as 别名]
# 或者: from distutils.command.bdist import bdist [as 别名]
def test_formats(self):
        # let's create a command and make sure
        # we can set the format
        dist = self.create_dist()[1]
        cmd = bdist(dist)
        cmd.formats = ['msi']
        cmd.ensure_finalized()
        self.assertEqual(cmd.formats, ['msi'])

        # what formats does bdist offer?
        formats = ['bztar', 'gztar', 'msi', 'rpm', 'tar',
                   'wininst', 'zip', 'ztar']
        found = sorted(cmd.format_command)
        self.assertEqual(found, formats) 
开发者ID:IronLanguages,项目名称:ironpython2,代码行数:16,代码来源:test_bdist.py

示例7: test_formats

# 需要导入模块: from distutils.command import bdist [as 别名]
# 或者: from distutils.command.bdist import bdist [as 别名]
def test_formats(self):
        # let's create a command and make sure
        # we can set the format
        dist = self.create_dist()[1]
        cmd = bdist(dist)
        cmd.formats = ['msi']
        cmd.ensure_finalized()
        self.assertEqual(cmd.formats, ['msi'])

        # what formats does bdist offer?
        formats = ['bztar', 'gztar', 'msi', 'rpm', 'tar',
                   'wininst', 'xztar', 'zip', 'ztar']
        found = sorted(cmd.format_command)
        self.assertEqual(found, formats) 
开发者ID:Microvellum,项目名称:Fluid-Designer,代码行数:16,代码来源:test_bdist.py


注:本文中的distutils.command.bdist.bdist方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。