當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。