modify travis file to force true on test execution. The XML parser will determine failures

(cherry picked from commit 879f94c74310ed89afe6d25df3b52c00422bbc5a)
Signed-off-by: Rohit Yadav <rohit.yadav@shapeblue.com>

Conflicts:
	.travis.yml
This commit is contained in:
Ian Duffy 2014-11-23 04:45:03 +00:00 committed by Rohit Yadav
parent 0128d62992
commit 3f844f39c5

View File

@ -35,7 +35,7 @@ before_script: travis_wait 30 ./tools/travis/before_script.sh
script: script:
- mkdir -p integration-test-results/misc - mkdir -p integration-test-results/misc
- travis_wait 30 sleep 30 - travis_wait 30 sleep 30
- for suite in $TESTS; do travis_wait 30 nosetests --with-xunit --xunit-file=integration-test-results/$suite.xml --with-marvin --marvin-config=setup/dev/advanced.cfg test/integration/smoke/$suite.py -s -a tags=advanced,required_hardware=false --zone=Sandbox-simulator --hypervisor=simulator ; done - for suite in $TESTS; do travis_wait 30 nosetests --with-xunit --xunit-file=integration-test-results/$suite.xml --with-marvin --marvin-config=setup/dev/advanced.cfg test/integration/smoke/$suite.py -s -a tags=advanced,required_hardware=false --zone=Sandbox-simulator --hypervisor=simulator || true ; done
- python ./tools/travis/xunit-reader.py integration-test-results/ - python ./tools/travis/xunit-reader.py integration-test-results/
after_success: ./tools/travis/after_success.sh after_success: ./tools/travis/after_success.sh
after_failure: ./tools/travis/after_failure.sh after_failure: ./tools/travis/after_failure.sh