summaryrefslogtreecommitdiffstats
path: root/meta-openstack
diff options
context:
space:
mode:
Diffstat (limited to 'meta-openstack')
-rw-r--r--meta-openstack/recipes-extended/tempest/tempest/tempest.conf12
-rw-r--r--meta-openstack/recipes-extended/tempest/tempest_git.bb5
2 files changed, 11 insertions, 6 deletions
diff --git a/meta-openstack/recipes-extended/tempest/tempest/tempest.conf b/meta-openstack/recipes-extended/tempest/tempest/tempest.conf
index 1406c5d..0c6819a 100644
--- a/meta-openstack/recipes-extended/tempest/tempest/tempest.conf
+++ b/meta-openstack/recipes-extended/tempest/tempest/tempest.conf
@@ -376,17 +376,17 @@ instance_type = m1.micro
376 376
377[dashboard] 377[dashboard]
378# URL where to find the dashboard home page 378# URL where to find the dashboard home page
379dashboard_url = 'http://localhost/' 379dashboard_url = 'http://localhost:8080/'
380 380
381# URL where to submit the login form 381# URL where to submit the login form
382login_url = 'http://localhost/auth/login/' 382login_url = 'http://localhost:8080/auth/login/'
383 383
384[scenario] 384[scenario]
385# Directory containing image files 385# Directory containing image files
386img_dir = /opt/stack/new/devstack/files/images/cirros-0.3.1-x86_64-uec 386img_dir = /home/root/images/
387 387
388# AMI image file name 388# AMI image file name
389ami_img_file = cirros-0.3.1-x86_64-blank.img 389ami_img_file = cirros-0.3.0-x86_64-disk.img
390 390
391# ARI image file name 391# ARI image file name
392ari_img_file = cirros-0.3.1-x86_64-initrd 392ari_img_file = cirros-0.3.1-x86_64-initrd
@@ -405,7 +405,7 @@ large_ops_number = 0
405# Enable cli tests 405# Enable cli tests
406enabled = True 406enabled = True
407# directory where python client binaries are located 407# directory where python client binaries are located
408cli_dir = /usr/local/bin 408cli_dir = /usr/bin
409# Number of seconds to wait on a CLI timeout 409# Number of seconds to wait on a CLI timeout
410timeout = 15 410timeout = 15
411 411
@@ -413,7 +413,7 @@ timeout = 15
413# Whether or not cinder is expected to be available 413# Whether or not cinder is expected to be available
414cinder = True 414cinder = True
415# Whether or not neutron is expected to be available 415# Whether or not neutron is expected to be available
416neutron = false 416neutron = True
417# Whether or not glance is expected to be available 417# Whether or not glance is expected to be available
418glance = True 418glance = True
419# Whether or not swift is expected to be available 419# Whether or not swift is expected to be available
diff --git a/meta-openstack/recipes-extended/tempest/tempest_git.bb b/meta-openstack/recipes-extended/tempest/tempest_git.bb
index af2277a..86ab7ae 100644
--- a/meta-openstack/recipes-extended/tempest/tempest_git.bb
+++ b/meta-openstack/recipes-extended/tempest/tempest_git.bb
@@ -49,6 +49,11 @@ do_install_append() {
49 for t in api cli scenario stress thirdparty; do 49 for t in api cli scenario stress thirdparty; do
50 ln -s ${PYTHON_SITEPACKAGES_DIR}/${SRCNAME}/$t ${TEMPEST_CONF_DIR}/tests/ 50 ln -s ${PYTHON_SITEPACKAGES_DIR}/${SRCNAME}/$t ${TEMPEST_CONF_DIR}/tests/
51 done 51 done
52
53 # test infrastructure
54 cp run_tests.sh ${TEMPEST_CONF_DIR}
55 cp .testr.conf ${TEMPEST_CONF_DIR}
56
52} 57}
53 58
54PACKAGES =+ "${SRCNAME}-tests" 59PACKAGES =+ "${SRCNAME}-tests"