Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions testing/python/integration.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,6 @@ def f(x, y, z):
assert values == ("y", "z")

def test_unittest_mock(self, testdir):
pytest.importorskip("unittest.mock")
testdir.makepyfile(
"""
import unittest.mock
Expand All @@ -142,7 +141,6 @@ def test_hello(self, abspath):
reprec.assertoutcome(passed=1)

def test_unittest_mock_and_fixture(self, testdir):
pytest.importorskip("unittest.mock")
testdir.makepyfile(
"""
import os.path
Expand All @@ -164,7 +162,6 @@ def test_hello(inject_me):
reprec.assertoutcome(passed=1)

def test_unittest_mock_and_pypi_mock(self, testdir):
pytest.importorskip("unittest.mock")
pytest.importorskip("mock", "1.0.1")
testdir.makepyfile(
"""
Expand Down