Skip to content

Commit 484678e

Browse files
committed
fix: COVERAGE_ONE_CORE should mean ctrace if possible
1 parent 37451ed commit 484678e

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

igor.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -133,10 +133,7 @@ def should_skip(core):
133133
only_one = os.getenv("COVERAGE_ONE_CORE")
134134
if only_one:
135135
if CPYTHON:
136-
if sys.version_info >= (3, 12):
137-
if core != "sysmon":
138-
skipper = f"Only one core: not running {core}"
139-
elif core != "ctrace":
136+
if core != "ctrace":
140137
skipper = f"Only one core: not running {core}"
141138
else:
142139
if core != "pytrace":

0 commit comments

Comments
 (0)