26455ee925
Also update hooks to use murano install_venv and update script to fix all the typos Co-Authored-By: Nikolay Starodubtsev <starodubcevna@gmail.com> Co-Authored-By: Victor Ryzhenkin <vryzhenkin@mirantis.com> Closes-Bug: #1536614 Change-Id: I17de28570d543d30e80d41113425e32b0f4c26b2
17 lines
337 B
Bash
Executable File
17 lines
337 B
Bash
Executable File
#!/bin/bash
|
|
|
|
source ./run_tests_common.sh
|
|
|
|
MURANO_ROOT=/opt/stack/new/murano/murano
|
|
# Using .venv for tempest installation
|
|
pushd $TEMPEST_DIR
|
|
python "$MURANO_ROOT/tools/install_venv.py"
|
|
source "$MURANO_ROOT/.venv/bin/activate"
|
|
pip install nose
|
|
nosetests -sv "$MURANO_ROOT/tests/functional/api/v1"
|
|
RETVAL=$?
|
|
deactivate
|
|
popd
|
|
exit $RETVAL
|
|
|