Skip to content

Commit

Permalink
renaming project to the official name, fixed travis.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Marcel Wolf committed Apr 3, 2015
1 parent 0da6750 commit 8c574e4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Expand Up @@ -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
4 changes: 2 additions & 2 deletions build.py
Expand Up @@ -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.
Expand Down Expand Up @@ -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"
Expand Down
3 changes: 0 additions & 3 deletions src/unittest/python/plugins/python/sphinx_plugin_tests.py
Expand Up @@ -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):

Expand Down

0 comments on commit 8c574e4

Please sign in to comment.