attempted fix of second test

Signed-off-by: Kenneth Reitz <me@kennethreitz.org>
This commit is contained in:
2017-09-07 21:19:43 -04:00
parent 7a89f15f1b
commit 0e6d683da7
+5 -5
View File
@@ -176,9 +176,9 @@ class TestPipenv():
delegator.run('rm -fr test_pipenv_uninstall')
def test_pipenv_run(self):
working_dir = 'test_pipenv_run'
delegator.run('mkdir {0}'.format(working_dir))
os.chdir(working_dir)
# working_dir = 'test_pipenv_run'
# delegator.run('mkdir {0}'.format(working_dir))
# os.chdir(working_dir)
# Build the environment.
os.environ['PIPENV_VENV_IN_PROJECT'] = '1'
@@ -193,8 +193,8 @@ class TestPipenv():
assert delegator.run('pipenv run pep8 --version').return_code == 0
assert delegator.run('pipenv run pytest --version').return_code == 0
os.chdir('..')
delegator.run('rm -fr {0}'.format(working_dir))
# os.chdir('..')
# delegator.run('rm -fr {0}'.format(working_dir))
def test_ensure_proper_casing_names(self):
"""Ensure proper casing for package names."""