openstack-tempest-skiplist/roles/install_skiplist/tasks/main.yaml
Arx Cruz bbd68443d6 Add TrafficOperationsScenarioTest to be skipped on scen10
A few scenario010 jobs are failing because of the timeout on
TrafficOperationsScenarioTests.

Related-Bug: #1914600
Change-Id: If2510834c8e41732c9f7d27aba6c93f3e0cdbcf4
2021-02-10 11:43:44 +01:00

19 lines
444 B
YAML

---
- block:
- name: Create tempest-skiplist venv with latest pip, setuptools and pbr
pip:
name: ['setuptools', 'pbr']
state: latest
extra_args: --user
- name: Ensure a recent version of pip is installed
pip:
name: "pip>=19.1.1"
virtualenv_command: "/usr/bin/python3 -m venv"
- name: Install tempest-skiplist
pip:
name: "."
chdir: "{{ tempest_skip_path }}"
extra_args: --user