11f0aeeb5e
In this patch removed tethering between functional tests and api tests which blocks test runs when tempest installation uses venv. Also, in this patch implemented tempest venv using for main gate job, which gave to main gate a beautiful stability against version conflicts. Change-Id: I577399552341f4b8085637e5dab975ccdd28cd2b Closes-Bug: #1476759
15 lines
419 B
Bash
Executable File
15 lines
419 B
Bash
Executable File
#!/bin/bash
|
|
|
|
source ./run_tests_common.sh
|
|
|
|
# Add tempest source tree to PYTHONPATH
|
|
export PYTHONPATH=$PYTHONPATH:$TEMPEST_DIR
|
|
|
|
#installing requirements for tempest
|
|
pip install -r $TEMPEST_DIR/requirements.txt
|
|
|
|
#installing test requirements for murano
|
|
pip install -r ../test-requirements.txt
|
|
|
|
nosetests -sv ../murano/tests/functional/integration/test_policy_enf.py ../murano/tests/functional/integration/test_mistral.py
|