add quotes around editable requirement

quotes are needed around the repo link otherwise it will not
install, thinking the package was not specified:

  pip install -q -U -e git+https://git.openstack.org/openstack/tosca-parser.git
  --editable=git+https://git.openstack.org/openstack/tosca-parser.git
  is not the right format; it must have #egg=Package

Co-Authored-By: Sahdev Zala <spzala@us.ibm.com>

Change-Id: Ib26f388823a95a870027a9e0ab127c8d760e2ad6
This commit is contained in:
Steve Martinelli 2016-05-25 17:45:39 -04:00 committed by Sahdev Zala
parent dfb984508a
commit 1147c9721d
2 changed files with 4 additions and 1 deletions

View File

@ -0,0 +1,3 @@
#!/bin/bash
pip install -q -U -e "git+https://git.openstack.org/openstack/tosca-parser.git#egg=tosca_parser"

View File

@ -29,7 +29,7 @@ commands = oslo_debug_helper -t translator/tests {posargs}
[testenv:py27-tosca-parser-master]
commands =
pip install -q -U -e git+https://git.openstack.org/openstack/tosca-parser.git#egg=tosca_parser
./run_py27-tosca-parser-master.sh
python setup.py test --slowest --testr-args='{posargs}'
[flake8]