diff --git a/tests/ci/rally_gate_functions.sh b/tests/ci/rally_gate_functions.sh index 6a050e49..65e0e95f 100644 --- a/tests/ci/rally_gate_functions.sh +++ b/tests/ci/rally_gate_functions.sh @@ -148,9 +148,14 @@ function run () { set -e cp resources_at_start.txt rally-plot/ - $PYTHON $RALLY_DIR/tests/ci/osresources.py\ - --compare-with-list resources_at_start.txt\ - | gzip > rally-plot/resources_diff.txt.gz + if [ "$ZUUL_PROJECT" == "openstack/rally" ];then + $PYTHON $RALLY_DIR/tests/ci/osresources.py\ + --compare-with-list resources_at_start.txt + else + $PYTHON $RALLY_DIR/tests/ci/osresources.py\ + --compare-with-list resources_at_start.txt\ + | gzip > rally-plot/resources_diff.txt.gz + fi exit $retval }