Avoid using openstack constraints

This repository should not make use of openstack containt files and addresses sanity job failure
caused by switch of nodeset image used for testing.

Change-Id: I7f3eab6ac44f53451114dcd8841bf4300500ab11
This commit is contained in:
Wesley Hayutin 2021-06-03 14:56:32 -06:00 committed by Sorin Sbârnea
parent 9111b1c1bd
commit c3483e8830
2 changed files with 4 additions and 3 deletions

View File

@ -8,7 +8,8 @@ requires =
[testenv] [testenv]
usedevelop = True usedevelop = True
install_command = pip install -c{env:TOX_CONSTRAINTS_FILE:https://opendev.org/openstack/requirements/raw/branch/master/upper-constraints.txt} {opts} {packages} # Do not use openstack constraint files here, this repository is used for CI
# and should not be subject to these.
passenv = passenv =
ANSIBLE_* ANSIBLE_*
CURL_CA_BUNDLE CURL_CA_BUNDLE

View File

@ -5,8 +5,8 @@
parent: tox parent: tox
vars: vars:
tox_envlist: sanity # dynamic tox env added by tox-ansible tox_envlist: sanity # dynamic tox env added by tox-ansible
# we want to run sanity only on py36 instead of implicit 2.6-3.9 range # we want to run sanity only on py38 instead of implicit 2.6-3.9 range
tox_extra_args: -- --python 3.6 tox_extra_args: -- --python 3.8
- job: - job:
name: tox-ansible-test-units name: tox-ansible-test-units