Skip to content

Commit 5df90fe

Browse files
committed
fixed failing delete_template test
1 parent cea0ec2 commit 5df90fe

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

test/integration/smoke/test_templates.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -735,8 +735,7 @@ def test_03_delete_template(self):
735735

736736
list_template_response = Template.list(
737737
self.apiclient,
738-
templatefilter=\
739-
self.services["templatefilter"],
738+
templatefilter='selfexecutable',
740739
id=self.template_1.id,
741740
account=self.account.name,
742741
domainid=self.account.domainid

tools/travis/script.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ set -e
3030

3131
for suite in "${TESTS[@]}" ; do
3232
echo "Currently running test: $suite"
33-
time nosetests --with-xunit --xunit-file=integration-test-results/$suite.xml --with-marvin --marvin-config=setup/dev/advanced.cfg test/integration/$suite.py -s -a tags=advanced,required_hardware=false --zone=Sandbox-simulator --hypervisor=simulator || true ;
33+
time nosetests --debug-log=integration-test-results/$suite.debug --with-xunit --xunit-file=integration-test-results/$suite.xml --with-marvin --marvin-config=setup/dev/advanced.cfg test/integration/$suite.py -s -a tags=advanced,required_hardware=false --zone=Sandbox-simulator --hypervisor=simulator || true ;
3434
done
3535

3636
python ./tools/travis/xunit-reader.py integration-test-results/

0 commit comments

Comments
 (0)