Skip to content

Commit

Permalink
Removed Debug mode
Browse files Browse the repository at this point in the history
  • Loading branch information
gtalarico committed May 12, 2018
1 parent d73277a commit 97dab95
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pipenv_pipes/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ def launch_env(environment):


def do_pick(environments, query=None):
picker = Picker(environments, query=query, debug_mode=True)
picker = Picker(environments, query=query, debug_mode=False)
selected = picker.start()
return selected

Expand Down
2 changes: 1 addition & 1 deletion tests/integration/test_pipenv.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def test_call_pipenv_venv_not_a_venv(temp_folder):
""" call venv on orphan folder: No virtual path has been created """
output, code = call_pipenv_venv(temp_folder)
assert code != 0
assert 'no virtualenv has been create' in output.lower()
assert 'no virtualenv has been crpipeseate' in output.lower()


def test_call_pipenv_venv(mock_env_home):
Expand Down

0 comments on commit 97dab95

Please sign in to comment.