| # Licensed to the Apache Software Foundation (ASF) under one |
| # or more contributor license agreements. See the NOTICE file |
| # distributed with this work for additional information |
| # regarding copyright ownership. The ASF licenses this file |
| # to you under the Apache License, Version 2.0 (the |
| # "License"); you may not use this file except in compliance |
| # with the License. You may obtain a copy of the License at |
| # |
| # http://www.apache.org/licenses/LICENSE-2.0 |
| # |
| # Unless required by applicable law or agreed to in writing, |
| # software distributed under the License is distributed on an |
| # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| # KIND, either express or implied. See the License for the |
| # specific language governing permissions and limitations |
| # under the License. |
| |
| language: java |
| cache: |
| directories: |
| - $HOME/.cache |
| jdk: |
| - oraclejdk7 |
| notifications: |
| email: false |
| env: |
| - TESTS="test_affinity_groups test_deploy_vms_with_varied_deploymentplanners test_disk_offerings test_global_settings test_guest_vlan_range test_iso" |
| - TESTS="test_portable_publicip test_primary_storage test_privategw_acl test_public_ip_range test_pvlan test_regions test_reset_vm_on_reboot test_resource_detail test_routers" |
| - TESTS="test_secondary_storage test_service_offerings test_ssvm test_templates" |
| - TESTS="test_multipleips_per_nic test_network test_non_contigiousvlan test_over_provisioning" |
| - TESTS="test_volumes test_vpc_vpn misc/test_deploy_vm test_vm_life_cycle" |
| before_install: travis_wait 30 ./tools/travis/before_install.sh |
| install: ./tools/travis/install.sh |
| before_script: travis_wait 30 ./tools/travis/before_script.sh |
| script: |
| - mkdir -p integration-test-results/misc |
| - 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 |
| - python ./tools/travis/xunit-reader.py integration-test-results/ |
| after_success: ./tools/travis/after_success.sh |
| after_failure: ./tools/travis/after_failure.sh |
| after_script: ./tools/travis/after_script.sh |