HomeAssistantRepository/dev-python/pytest-cov/files/pytest-cov-2.8.1-disable-broken-tests.patch

21 lines
763 B
Diff

diff --git a/tests/test_pytest_cov.py b/tests/test_pytest_cov.py
index e79e9aa..e5ef2c1 100644
--- a/tests/test_pytest_cov.py
+++ b/tests/test_pytest_cov.py
@@ -820,6 +820,7 @@ parallel = true
assert result.ret == 0
+@pytest.mark.skip(reason="test is broken")
def test_central_subprocess_change_cwd_with_pythonpath(testdir, monkeypatch):
stuff = testdir.mkdir('stuff')
parent_script = stuff.join('parent_script.py')
@@ -951,6 +952,7 @@ def test_invalid_coverage_source(testdir):
assert not matching_lines
+@pytest.mark.skip(reason="test is broken")
@pytest.mark.skipif("'dev' in pytest.__version__")
@pytest.mark.skipif('sys.platform == "win32" and platform.python_implementation() == "PyPy"')
def test_dist_missing_data(testdir):