diff options
Diffstat (limited to 'docker')
-rw-r--r-- | docker/healthcheck/testcases.yaml | 4 | ||||
-rw-r--r-- | docker/smoke/testcases.yaml | 4 | ||||
-rw-r--r-- | docker/tempest/Dockerfile | 6 |
3 files changed, 6 insertions, 8 deletions
diff --git a/docker/healthcheck/testcases.yaml b/docker/healthcheck/testcases.yaml index 75c186d75..84135678b 100644 --- a/docker/healthcheck/testcases.yaml +++ b/docker/healthcheck/testcases.yaml @@ -169,8 +169,6 @@ tiers: simple queries. When the config value of snaps.use_keystone is True, functest must have access to the cloud's private network. - dependencies: - - DEPLOY_SCENARIO: '^((?!lxd).)*$' run: module: 'functest.opnfv_tests.openstack.snaps.api_check' class: 'ApiCheck' @@ -185,8 +183,6 @@ tiers: Python test class which creates an, image, flavor, network, and Cirros VM instance and observes the console output to validate the single port obtains the correct IP address. - dependencies: - - DEPLOY_SCENARIO: '^((?!lxd).)*$' run: module: 'functest.opnfv_tests.openstack.snaps.health_check' class: 'HealthCheck' diff --git a/docker/smoke/testcases.yaml b/docker/smoke/testcases.yaml index 65190f414..167471959 100644 --- a/docker/smoke/testcases.yaml +++ b/docker/smoke/testcases.yaml @@ -96,6 +96,8 @@ tiers: VMTP is a small python application that will automatically perform ping connectivity, round trip time measurement (latency) and TCP/UDP throughput + dependencies: + - POD_ARCH: '^(?!aarch64$)' run: module: 'functest.opnfv_tests.openstack.vmtp.vmtp' @@ -129,8 +131,6 @@ tiers: this functionality. When the config value of snaps.use_keystone is True, functest must have access to the cloud's private network. - dependencies: - - DEPLOY_SCENARIO: '^((?!lxd).)*$' run: module: 'functest.opnfv_tests.openstack.snaps.smoke' class: 'SnapsSmoke' diff --git a/docker/tempest/Dockerfile b/docker/tempest/Dockerfile index a09a562fd..dc9c9dede 100644 --- a/docker/tempest/Dockerfile +++ b/docker/tempest/Dockerfile @@ -2,7 +2,8 @@ FROM opnfv/functest-core ARG BRANCH=master ARG OPENSTACK_TAG=stable/queens -ARG RALLY_TAG=0.11.2 +ARG RALLY_TAG=1.1.0 +ARG RALLY_OPENSTACK_TAG=1.2.0 ARG OS_FAULTS_TAG=0.1.17 RUN apk --no-cache add --virtual .build-deps --update \ @@ -28,7 +29,8 @@ RUN apk --no-cache add --virtual .build-deps --update \ git clone https://github.com/openstack/rally.git /src/rally && \ (cd /src/rally && git checkout $RALLY_TAG) && \ update-requirements -s --source /src/openstack-requirements /src/rally/ && \ - git clone --depth 1 https://github.com/openstack/rally-openstack.git /src/rally-openstack && \ + git clone https://github.com/openstack/rally-openstack.git /src/rally-openstack && \ + (cd /src/rally-openstack && git checkout $RALLY_OPENSTACK_TAG) && \ update-requirements -s --source /src/openstack-requirements /src/rally-openstack && \ pip install --no-cache-dir --src /src -cupper-constraints.txt -cupper-constraints.opnfv.txt \ tempest /src/rally-openstack /src/os-faults && \ |