From 58af57a3ea3a109f05c5b3e9f7b6e1e24adc9834 Mon Sep 17 00:00:00 2001 From: Andrey Rakhmatullin Date: Fri, 5 Jun 2026 18:34:02 +0500 Subject: [PATCH] Work around coverage slowness on Python 3.14. (#7574) --- pyproject.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index e027ea74d..2d857dc6d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -157,6 +157,8 @@ parse = """(?P0|[1-9]\\d*)\\.(?P0|[1-9]\\d*)""" serialize = ["{major}.{minor}"] [tool.coverage.run] +# sysmon, default on 3.14, is too slow: https://github.com/coveragepy/coveragepy/issues/2172 +core = "ctrace" branch = true include = ["scrapy/*"] omit = ["tests/*"]