summaryrefslogtreecommitdiff
path: root/tests/test_process.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_process.py')
-rw-r--r--tests/test_process.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/tests/test_process.py b/tests/test_process.py
index 70d6b934..cbfc5557 100644
--- a/tests/test_process.py
+++ b/tests/test_process.py
@@ -702,14 +702,6 @@ class EnvironmentTest(CoverageTest):
expected = self.run_command("python with_main")
actual = self.run_command("coverage run with_main")
-
- # PyPy includes the current directory in the path when running a
- # directory, while CPython and coverage.py do not. Exclude that from
- # the comparison also...
- if env.PYPY:
- ignored = re.escape(os.getcwd())
- expected = re_lines_text(ignored, expected, match=False)
- actual = re_lines_text(ignored, actual, match=False)
self.assert_tryexecfile_output(expected, actual)
def test_coverage_run_dashm_dir_no_init_is_like_python(self):