@@ -685,8 +685,6 @@ def test_confusing_for_loop_bug_175(self) -> None:
685685 branchz_missing = "" ,
686686 )
687687
688- # https://bugs.python.org/issue44672
689- @pytest .mark .xfail (env .PYVERSION < (3 , 10 ), reason = "<3.10 traced final pass incorrectly" )
690688 def test_incorrect_loop_exit_bug_1175 (self ) -> None :
691689 self .check_coverage ("""\
692690 def wrong_loop(x):
@@ -1876,21 +1874,9 @@ def test_lambda_in_dict(self) -> None:
18761874 )
18771875
18781876
1879- # This had been a failure on Mac 3.9, but it started passing on GitHub
1880- # actions (running macOS 12) but still failed on my laptop (macOS 14).
1881- # I don't understand why it failed, I don't understand why it passed,
1882- # so just skip the whole thing.
1883- skip_eventlet_670 = pytest .mark .skipif (
1884- env .PYVERSION [:2 ] == (3 , 9 ) and env .CPYTHON and env .MACOS ,
1885- reason = "Avoid an eventlet bug on Mac 3.9: eventlet#670" ,
1886- # https://github.com/eventlet/eventlet/issues/670
1887- )
1888-
1889-
18901877class AsyncTest (CoverageTest ):
18911878 """Tests of the new async and await keywords in Python 3.5"""
18921879
1893- @skip_eventlet_670
18941880 def test_async (self ) -> None :
18951881 self .check_coverage ("""\
18961882 import asyncio
@@ -1914,7 +1900,6 @@ async def print_sum(x, y): # 8
19141900 )
19151901 assert self .stdout () == "Compute 1 + 2 ...\n 1 + 2 = 3\n "
19161902
1917- @skip_eventlet_670
19181903 def test_async_for (self ) -> None :
19191904 self .check_coverage ("""\
19201905 import asyncio
@@ -1970,8 +1955,6 @@ async def go():
19701955 )
19711956
19721957 # https://github.com/nedbat/coveragepy/issues/1158
1973- # https://bugs.python.org/issue44621
1974- @pytest .mark .skipif (env .PYVERSION [:2 ] == (3 , 9 ), reason = "avoid a 3.9 bug: 44621" )
19751958 def test_bug_1158 (self ) -> None :
19761959 self .check_coverage ("""\
19771960 import asyncio
@@ -1997,7 +1980,6 @@ async def async_test():
19971980
19981981 # https://github.com/nedbat/coveragepy/issues/1176
19991982 # https://bugs.python.org/issue44622
2000- @skip_eventlet_670
20011983 def test_bug_1176 (self ) -> None :
20021984 self .check_coverage ("""\
20031985 import asyncio
0 commit comments