diff --git a/.travis.yml b/.travis.yml index 69d397a5..278294dd 100644 --- a/.travis.yml +++ b/.travis.yml @@ -18,9 +18,7 @@ jobs: include: - stage: Style Tests ✨ python: 2.7 - python: 3.4 script: pipenv run flake8 - stage: Main Test Suite ✨✨ python: 2.7 - python: 3.4 script: pipenv run pytest tests diff --git a/pipenv/cli.py b/pipenv/cli.py index 7ee32a9f..07353ce6 100644 --- a/pipenv/cli.py +++ b/pipenv/cli.py @@ -487,7 +487,6 @@ def do_lock(no_hashes=True): # Write newline at end of document. GH Issue #319. f.write('\n') - click.echo('{0} Pipfile.lock{1}'.format(crayons.yellow('Updated'), crayons.yellow('!')), err=True) else: diff --git a/pipenv/utils.py b/pipenv/utils.py index 2e118674..d6ea836b 100644 --- a/pipenv/utils.py +++ b/pipenv/utils.py @@ -16,6 +16,7 @@ VCS_LIST = ('git', 'svn', 'hg', 'bzr') requests = requests.session() + class PipCommand(pip.basecommand.Command): name = 'PipCommand' diff --git a/test_windows/test_basic.py b/test_windows/test_basic.py index 46140a65..4344eea0 100644 --- a/test_windows/test_basic.py +++ b/test_windows/test_basic.py @@ -1,5 +1,6 @@ import delegator + class TestPipenv(): def test_existience(self): @@ -11,5 +12,4 @@ class TestPipenv(): def test_lock(self): c = delegator.run('pipenv lock') - assert c.return_code == 0 - + assert c.return_code == 0 \ No newline at end of file