[stable-only] Cap stestr for python 2

stestr dropped python 2 support with version 3.0.0 and tooz does not
use constraints from openstack/requirements, so test-requirements.txt
is updated to use stestr<3.0.0 in case of python 2.

Since tooz do not consume upper-constraints there is no need for
requirement check job either so it is removed, too.

Change-Id: I7a75be587efc2098e919f1ea34f9ffc357203dfb
This commit is contained in:
Elod Illes 2020-03-30 15:10:09 +02:00
parent 966f25804f
commit 13a6dffa32
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,5 @@
- project:
templates:
- check-requirements
- lib-forward-testing
- lib-forward-testing-python3
- openstack-cover-jobs

View File

@ -9,4 +9,5 @@ coverage>=3.6 # Apache-2.0
fixtures>=3.0.0 # Apache-2.0/BSD
pifpaf>=0.10.0 # Apache-2.0
os-testr>=0.8.0 # Apache-2.0
stestr>=2.0.0
stestr>=2.0.0,<3.0.0;python_version<'3.0'
stestr>=2.0.0;python_version>='3.0'