
Add gate hook to contrib/ci dir to be able to configure functional tests job. pre_test_hook just imports devstack extension for manila project to the devstack project. post_test_hook configures config file for manilaclient based on devstack installation and runs related tox job. Also fix default config file path within config module. Partially implements bp functional-tests Change-Id: Ibf90af083b9a8e0ec646e1bff676893528ff1914
19 lines
733 B
Bash
19 lines
733 B
Bash
#!/bin/bash -xe
|
|
#
|
|
# Licensed 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.
|
|
|
|
# This script is executed inside pre_test_hook function in devstack gate.
|
|
|
|
# Install manila devstack integration
|
|
cp -r $BASE/new/manila/contrib/devstack/* $BASE/new/devstack
|