
- Implement call proxy handling. Example: import tobiko class MyProtocol(tobiko.Protocol): def do_something(some='argument'): raise NotImplementedError def handle_call(method, *args, **kwargs) print(f'do something with some={some}') proxy = tobiko.call_proxy(MyProtocol, handle_call) proxy.do_something('aple') It will print: do something with some=apple - Add new depenency from decorator library Change-Id: I4a933e779739cfd953cafb275b074a308822aaac
36 lines
587 B
Plaintext
36 lines
587 B
Plaintext
# from requirements.txt
|
|
|
|
decorator===4.4.2
|
|
docker==4.4.1
|
|
fixtures==3.0.0
|
|
Jinja2==2.11.2
|
|
keystoneauth1==4.3.0
|
|
netaddr==0.8.0
|
|
neutron-lib==2.7.0
|
|
oslo.config==8.4.0
|
|
oslo.log==4.4.0
|
|
paramiko==2.7.2
|
|
pbr==5.5.1
|
|
podman==1.6.0
|
|
python-glanceclient==3.2.2
|
|
python-heatclient==2.3.0
|
|
python-neutronclient==7.2.1
|
|
python-novaclient==17.2.1
|
|
python-octaviaclient==2.2.0
|
|
python-openstackclient==5.4.0
|
|
six==1.15.0
|
|
sshtunnel==0.3.1
|
|
stestr==3.1.0
|
|
testtools==2.4.0
|
|
|
|
|
|
# from test-requirements.txt
|
|
|
|
ansi2html==1.6.0
|
|
coverage==5.3.1
|
|
mock==3.0.5
|
|
psutil==5.8.0
|
|
pytest==6.2.1
|
|
pytest-html==3.1.1
|
|
pytest-xdist==2.2.0
|