Merge in RR/pyinfra from partial_responses to master
Squashed commit of the following:
commit afd67d87a6349c4b97453a12274c6ccf5e976339
Author: Matthias Bisping <matthias.bisping@iqser.com>
Date: Tue Apr 26 12:48:12 2022 +0200
updated test container dockerfile for new location of tests directory
commit 37881da08ebedf0f2d0c6c2b267bdb47818a0da1
Author: Matthias Bisping <matthias.bisping@iqser.com>
Date: Tue Apr 26 12:45:12 2022 +0200
restructuring: moved test out of module scope
11 lines
240 B
Python
11 lines
240 B
Python
import pytest
|
|
|
|
from pyinfra.storage.adapters.azure import AzureStorageAdapter
|
|
from test.storage.client_mock import StorageClientMock
|
|
|
|
|
|
@pytest.fixture
|
|
def adapter():
|
|
adapter = AzureStorageAdapter(StorageClientMock())
|
|
return adapter
|