pipenv check

Signed-off-by: Kenneth Reitz <me@kennethreitz.org>
This commit is contained in:
2018-01-11 08:08:00 -05:00
parent 778131b176
commit a54a019873
+4
View File
@@ -188,6 +188,10 @@ class PipenvProject(object):
return self._run('uninstall {0}'.format(package_name)).return_code == 0
def check(self):
"""Runs Pipenv check on the Pipenv project."""
return self._run('check').return_code == 0
@property
def virtualenv_location(self):
return self._run('--venv').out.strip()