Skip to content

Commit

Permalink
0.2.6
Browse files Browse the repository at this point in the history
- passes all additional arguments to py-develop to setuptools
  • Loading branch information
a-tal committed Apr 25, 2016
1 parent ea8a95f commit fa414be
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -32,7 +32,7 @@ def long_description():

setup(
name="pypackage",
version="0.2.5",
version="0.2.6",
author="Adam Talsma",
author_email="se-adam.talsma@ccpgames.com",
url="http://ccpgames.github.io/pypackage",
Expand Down
7 changes: 3 additions & 4 deletions test/test_commands.py
Expand Up @@ -27,10 +27,9 @@ def test_run_develop():
with mock.patch.object(commands, "pypackage_setup") as patched_setup:
commands.develop()

patched_setup.assert_called_once_with(
["develop"],
additional=commands.develop.__doc__,
)
mock_call = patched_setup.mock_calls[0]
assert mock_call[1][0] == ["develop", "test"]
assert mock_call[1][-1] == commands.develop.__doc__


@pytest.mark.parametrize("flag", ("s", "m"), ids=("setup", "metadata"))
Expand Down

0 comments on commit fa414be

Please sign in to comment.