mirror of
https://github.com/nvbn/thefuck.git
synced 2025-04-18 08:40:44 +01:00
7 lines
152 B
Python
7 lines
152 B
Python
import pytest
|
|
|
|
|
|
@pytest.fixture(autouse=True)
|
|
def build_container_mock(mocker):
|
|
return mocker.patch('pytest_docker_pexpect.docker.build_container')
|