c43fc6c9c8
With ansible-core 2.13 it tries to substitude package resolution in apt module. However git-core is used in Debian as transitional name, but ansible tries to select it and provide version, which is not correct behaviour. But since git-core is not really valid anyway, we just replace it to workaround ansible's imperfectness. Change-Id: I862e1ea4cef840d1903962181bfc8ec3c5a1e903
42 lines
1.5 KiB
YAML
42 lines
1.5 KiB
YAML
---
|
|
# Copyright 2016, Rackspace US, Inc.
|
|
#
|
|
# 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.
|
|
|
|
## APT Cache options
|
|
cache_timeout: 600
|
|
|
|
_stestr_executable: "{{ (tempest_install_method == 'distro') | ternary('testr', 'stestr') }}"
|
|
|
|
tempest_distro_packages:
|
|
- git
|
|
- libxslt1.1 # required by the python module unittest2
|
|
- build-essential # required to build tempest plugins (TODO) remove this when repo server can satisfy the tempest plugin requirements
|
|
- nmap # provides ncat tool which is required by some of the neutron-tempest-plugin scenario tests
|
|
|
|
tempest_devel_distro_packages:
|
|
- python3-dev # required for netifaces module for stackviz
|
|
|
|
tempest_service_distro_packages:
|
|
- tempest
|
|
- python3-junitxml
|
|
- python3-pip
|
|
- python3-subunit
|
|
- iputils-ping
|
|
|
|
# Note(odyssey4me):
|
|
# Ubuntu does not publish tempest plugin packages. They do
|
|
# all their testing using the source-based installation of
|
|
# tempest.
|
|
tempest_plugin_distro_packages: []
|