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


Python distutils_plugin.build_dependency_links_string函数代码示例

本文整理汇总了Python中pybuilder.plugins.python.distutils_plugin.build_dependency_links_string函数的典型用法代码示例。如果您正苦于以下问题:Python build_dependency_links_string函数的具体用法?Python build_dependency_links_string怎么用?Python build_dependency_links_string使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。


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

示例1: test_should_return_dependency_links

 def test_should_return_dependency_links(self):
     self.project.depends_on("pyassert1",
                             url="https://github.com/downloads/halimath/pyassert/pyassert1-0.2.2.tar.gz")
     self.project.depends_on("pyassert2",
                             url="https://github.com/downloads/halimath/pyassert/pyassert2-0.2.2.tar.gz")
     self.assertEqual('dependency_links = [ "https://github.com/downloads/halimath/pyassert/pyassert1-0.2.2.tar.gz",'
                      ' "https://github.com/downloads/halimath/pyassert/pyassert2-0.2.2.tar.gz" ],',
                      build_dependency_links_string(self.project))
开发者ID:brendawong,项目名称:pybuilder,代码行数:8,代码来源:distutils_plugin_tests.py

示例2: test_should_use_expanded_editable_urls_from_requirements_as_dependency_links

    def test_should_use_expanded_editable_urls_from_requirements_as_dependency_links(self, mock_open):
        mock_open.return_value = MagicMock(spec=TYPE_FILE)
        handle = mock_open.return_value.__enter__.return_value
        handle.readlines.return_value = [
            "--editable git+https://github.com/someuser/someproject.git#egg=some_package",
            "--editable svn+https://github.com/someuser/someproject#egg=some_package"]
        self.project.depends_on_requirements("requirements.txt")

        self.assertEqual(
            'dependency_links = [ "git+https://github.com/someuser/someproject.git#egg=some_package",'
            ' "svn+https://github.com/someuser/someproject#egg=some_package" ],',
            build_dependency_links_string(self.project))
开发者ID:brendawong,项目名称:pybuilder,代码行数:12,代码来源:distutils_plugin_tests.py

示例3: test_should_use_editable_urls_from_requirements_combined_with_url_dependencies

    def test_should_use_editable_urls_from_requirements_combined_with_url_dependencies(self, mock_open):
        mock_open.return_value = MagicMock(spec=TYPE_FILE)
        handle = mock_open.return_value.__enter__.return_value
        handle.readlines.return_value = [
            "-e svn+https://github.com/someuser/someproject#egg=some_package"]
        self.project.depends_on(
            "jedi", url="git+https://github.com/davidhalter/jedi")
        self.project.depends_on_requirements("requirements.txt")

        self.assertEqual(
            "[\n            'git+https://github.com/davidhalter/jedi',\n"
            "            'svn+https://github.com/someuser/someproject#egg=some_package'\n"
            "        ]",
            build_dependency_links_string(self.project))
开发者ID:Lucas-C,项目名称:pybuilder,代码行数:14,代码来源:distutils_plugin_tests.py

示例4: test_should_return_dependency_link

 def test_should_return_dependency_link(self):
     self.project.depends_on(
         "pyassert", url="https://github.com/downloads/halimath/pyassert/pyassert-0.2.2.tar.gz")
     self.assertEqual(
         "['https://github.com/downloads/halimath/pyassert/pyassert-0.2.2.tar.gz']",
         build_dependency_links_string(self.project))
开发者ID:Lucas-C,项目名称:pybuilder,代码行数:6,代码来源:distutils_plugin_tests.py

示例5: test_should_return_empty_string_when_no_link_dependency_is_given

 def test_should_return_empty_string_when_no_link_dependency_is_given(self):
     self.assertEqual("[]", build_dependency_links_string(self.project))
开发者ID:Lucas-C,项目名称:pybuilder,代码行数:2,代码来源:distutils_plugin_tests.py


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