Remove unused mock_home_env() pytest fixture

This was replaced with patched_home_env() but never removed.
This commit is contained in:
Mike Salvatore 2021-07-02 09:31:45 -04:00
parent f698c889e3
commit f4102aaa3a
1 changed files with 0 additions and 7 deletions

View File

@ -11,10 +11,3 @@ sys.path.insert(0, MONKEY_BASE_PATH)
@pytest.fixture(scope="session")
def data_for_tests_dir(pytestconfig):
return os.path.join(pytestconfig.rootdir, "monkey", "tests", "data_for_tests")
@pytest.fixture
def mock_home_env(monkeypatch, tmpdir):
monkeypatch.setenv("HOME", str(tmpdir))
return tmpdir