From 8c574e4a838a972f6ec0d10c16e5ec1b114632f2 Mon Sep 17 00:00:00 2001 From: Marcel Wolf Date: Fri, 3 Apr 2015 12:34:41 +0200 Subject: [PATCH] renaming project to the official name, fixed travis.yml --- .travis.yml | 2 +- build.py | 4 ++-- src/unittest/python/plugins/python/sphinx_plugin_tests.py | 3 --- 3 files changed, 3 insertions(+), 6 deletions(-) diff --git a/.travis.yml b/.travis.yml index 1ed95158e..2d43c15cf 100644 --- a/.travis.yml +++ b/.travis.yml @@ -17,7 +17,7 @@ before_script: script: - ./build.py -v -X - - (cd target/dist/pybuilder-* && python setup.py install) + - (cd target/dist/PyBuilder-* && python setup.py install) after_success: - coveralls --verbose diff --git a/build.py b/build.py index 71f2c13cc..1c4a8ac6d 100755 --- a/build.py +++ b/build.py @@ -55,7 +55,7 @@ use_bldsup() use_plugin("pdoc") -name = "pybuilder" +name = "PyBuilder" summary = "An extensible, easy to use continuous build tool for Python" description = """PyBuilder is a build automation tool for python. @@ -104,7 +104,7 @@ def initialize(project): project.set_property("copy_resources_target", "$dir_dist") project.get_property("copy_resources_glob").append("LICENSE") project.get_property("filter_resources_glob").extend(["**/pybuilder/__init__.py", - '**/pybuilder/plugins/python/sphinx_plugin.py']) + '**/pybuilder/plugins/python/sphinx_plugin.py']) project.doc_author = "PyBuilder_Team" project.doc_builder = "html" diff --git a/src/unittest/python/plugins/python/sphinx_plugin_tests.py b/src/unittest/python/plugins/python/sphinx_plugin_tests.py index e2114ca6f..ec0ec9849 100644 --- a/src/unittest/python/plugins/python/sphinx_plugin_tests.py +++ b/src/unittest/python/plugins/python/sphinx_plugin_tests.py @@ -39,9 +39,6 @@ def test_should_check_that_sphinx_can_be_executed(self, mock_assert_can_execute) expected_command_line = ['sphinx-build', '--version'] mock_assert_can_execute.assert_called_with(expected_command_line, 'sphinx', 'plugin python.sphinx') - -class test_should_check_that_sphinx_quickstart_can_be_executed(TestCase): - @patch('pybuilder.plugins.python.sphinx_plugin.assert_can_execute') def test_should_check_that_sphinx_quickstart_can_be_executed(self, mock_assert_can_execute):