Fixed an issue where was invoked before it was defined in the case of a venv

This commit is contained in:
Lorin Hochstein
2011年07月21日 10:30:55 -04:00
parent 90c8a7c73d
commit eed00e5c82

View File

@@ -52,8 +52,8 @@ for arg in "$@"; do
process_option $arg
done
# If enabled, tell nose to collect coverage data
if [ $coverage -eq 1 ]; then
${wrapper} coverage erase
noseopts="$noseopts --with-coverage --cover-package=nova"
fi
@@ -116,6 +116,11 @@ then
fi
fi
# Delete old coverage data from previous runs
if [ $coverage -eq 1 ]; then
${wrapper} coverage erase
fi
if [ $just_pep8 -eq 1 ]; then
run_pep8
exit
Reference in New Issue
openstack/nova
Block a user
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.

The note is not visible to the blocked user.