
* Removed skipsdist=True to make sure placement available in the virtual env. Without this, our entrypoints are not available. * Removed basepython = python3 as we assume all developer switched to python3 in their env already * Removed ignore_basepython_conflict = True as without the basepython definition generative targets now work without conflict See [1] for a similar change made to placement. It is also necessary to fix issues with the gate. For reasons that I have yet to grok, a mock of 'requests.request' used in some test is no longer functioning as expected. My guess is that something is now importing requests before us and interfering with the mock but never mind - we can easily bypass the issue by mocking 'requests.post' instead. Changes: keystonemiddleware/tests/unit/test_ec2_token_middleware.py test-requirements.txt NOTE(stephenfin): It is necessary to revert the test changes since they don't apply to this branch. It is also necessary to cap bandit since we can't fix the timeout errors it is warning about without a feature backport. [1] https://review.opendev.org/c/openstack/placement/+/868418/ Change-Id: I3b8263afbf0ccee88ceaac2040d5ad274f22d74a Signed-off-by: Stephen Finucane <stephenfin@redhat.com> (cherry picked from commit 626df3a5e9e9d4fbea2649a9cfa0048083bdb88b)
25 lines
740 B
Plaintext
25 lines
740 B
Plaintext
# The order of packages is significant, because pip processes them in the order
|
|
# of appearance. Changing the order has an impact on the overall integration
|
|
# process, which may cause wedges in the gate later.
|
|
|
|
hacking>=3.0,<4.0.0 # Apache-2.0
|
|
flake8-docstrings==1.6.0 # MIT
|
|
pep8==1.7.1 # MIT
|
|
|
|
|
|
coverage!=4.4,>=4.0 # Apache-2.0
|
|
cryptography>=3.0 # BSD/Apache-2.0
|
|
fixtures>=3.0.0 # Apache-2.0/BSD
|
|
oslotest>=3.2.0 # Apache-2.0
|
|
stevedore>=1.20.0 # Apache-2.0
|
|
requests-mock>=1.2.0 # Apache-2.0
|
|
stestr>=2.0.0 # Apache-2.0
|
|
testresources>=2.0.0 # Apache-2.0/BSD
|
|
testtools>=2.2.0 # MIT
|
|
python-memcached>=1.59 # PSF
|
|
WebTest>=2.0.27 # MIT
|
|
oslo.messaging>=5.29.0 # Apache-2.0
|
|
|
|
# Bandit security code scanner
|
|
bandit!=1.6.0,>=1.1.0,<1.7.5 # Apache-2.0
|