Skip to content
This repository has been archived by the owner on May 23, 2023. It is now read-only.

Commit

Permalink
debugging output
Browse files Browse the repository at this point in the history
  • Loading branch information
Buck Golemon committed Jan 6, 2015
1 parent 94b2fe9 commit d98fee0
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
5 changes: 5 additions & 0 deletions TODO
Original file line number Diff line number Diff line change
Expand Up @@ -54,3 +54,8 @@ LATER: Things that I want to do, but would put me past my deadline:
* dogfood venv-update during travis, tox

* test against older/newer pip/virtualenv

* change host-python requirement to simply pip, any version
* necessitates an intermediate stage2, stage3 being the final product

* speed up the (git|hg)+ case. `pip install` is currently much faster.
5 changes: 5 additions & 0 deletions tests/functional/relocation_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,11 @@ def test_is_relocatable_different_python_version(tmpdir):
requirements('doge==3.5.0')

venv_update('--python=python2.6')
if True: # debugging output:
run('pwd')
run('ls', '-l', 'virtualenv_run/bin')
run('sh', '-c', '. virtualenv_run/bin/activate && which doge')
run('sh', '-c', '. virtualenv_run/bin/activate && head -n1 `which doge`')
run('sh', '-c', '. virtualenv_run/bin/activate && doge --help')
out, err = run('sh', '-c', '. virtualenv_run/bin/activate && python --version')
assert out == ''
Expand Down

0 comments on commit d98fee0

Please sign in to comment.