Ensure stackviz installs from tarball URL only

Stackviz installs from a tarball in order to make it happen quicker.
If we were to build it from git sources, then we'd have to build the
HTML page ourselves, which takes approximately ten minutes.

Due to the tarball URL being used as the package name, we're unable
to constrain it without making the venv build role a lot more complex.

To keep it simple, we just disable the wheel build process and install
it from the tarball instead.

Depends-On: https://review.openstack.org/644391
Change-Id: Ieb498c49377d77577c98ddb2d911066e44d8d9dd
This commit is contained in:
Jesse Pretorius 2019-02-18 09:37:53 +00:00
parent 43298b1bbe
commit fde68805fa
1 changed files with 1 additions and 0 deletions

View File

@ -36,4 +36,5 @@
venv_install_destination_path: "{{ stackviz_venv_bin | dirname }}"
venv_pip_install_args: "--isolated"
venv_pip_packages: "{{ [ stackviz_tarball ] }}"
venv_wheel_build_enable: no
when: tempest_run_stackviz | bool