diff options
author | Robert Collins <rbtcollins@hp.com> | 2015-04-25 12:56:20 +1200 |
---|---|---|
committer | Robert Collins <rbtcollins@hp.com> | 2015-04-28 13:01:51 +1200 |
commit | 4008b5ef0cbde7f15435a16cd8800bed7a21adf4 (patch) | |
tree | 792339523523503bcb7c4c204f2aeeb7fd7395e8 | |
parent | 5b1ad235cdd34db4af1c69ccfb79e167d7426d5c (diff) | |
download | pbr-4008b5ef0cbde7f15435a16cd8800bed7a21adf4.tar.gz |
Test pip install -e of projects.
Change-Id: Ie57d12f32085036079c60edfbe7aecfc7a077f5b
-rw-r--r-- | tools/integration.sh | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tools/integration.sh b/tools/integration.sh index 8f68800..5d04df2 100644 --- a/tools/integration.sh +++ b/tools/integration.sh @@ -203,6 +203,11 @@ for PROJECT in $PROJECTS ; do mkvenv $pipvenv $pipvenv/bin/pip $PIPFLAGS install -f $WHEELHOUSE git+file://$shortprojectdir + # Test pip install -e + pipvenv=$tmpdir/pip + mkvenv $pipvenv + $pipvenv/bin/pip $PIPFLAGS install -f $WHEELHOUSE -e $shortprojectdir + # Test python setup.py install installvenv=$tmpdir/install mkvenv $installvenv |