We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ceb65dc commit 3455622Copy full SHA for 3455622
tests/test_process.py
@@ -702,14 +702,6 @@ def test_coverage_run_dir_is_like_python_dir(self):
702
703
expected = self.run_command("python with_main")
704
actual = self.run_command("coverage run with_main")
705
-
706
- # PyPy includes the current directory in the path when running a
707
- # directory, while CPython and coverage.py do not. Exclude that from
708
- # the comparison also...
709
- if env.PYPY:
710
- ignored = re.escape(os.getcwd())
711
- expected = re_lines_text(ignored, expected, match=False)
712
- actual = re_lines_text(ignored, actual, match=False)
713
self.assert_tryexecfile_output(expected, actual)
714
715
def test_coverage_run_dashm_dir_no_init_is_like_python(self):
0 commit comments