mirror of
https://opendev.org/openstack/python-openstackclient.git
synced 2026-01-17 07:20:45 +00:00
Fix test runner run_tests.sh is broken
run_tests.sh contains incorrect variable assignment at line 80 which makes script to fail when trying to run tests. Fixes: bug #1105000 Change-Id: Ib29c50f28d8b7e09935cd4136e709e0e0141ad2a
This commit is contained in:
parent
8d64cc2caa
commit
72adfc61f2
1 changed files with 1 additions and 1 deletions
|
|
@ -77,7 +77,7 @@ function run_tests {
|
|||
if [ $coverage -eq 1 ]; then
|
||||
# Do not test test_coverage_ext when gathering coverage.
|
||||
if [ "x$testrargs" = "x" ]; then
|
||||
testrargs = "^(?!.*test_coverage_ext).*$"
|
||||
testrargs="^(?!.*test_coverage_ext).*$"
|
||||
fi
|
||||
export PYTHON="${wrapper} coverage run --source novaclient --parallel-mode"
|
||||
fi
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue