Skip to content

Commit

Permalink
fix: COVERAGE_ONE_CORE should mean ctrace if possible
Browse files Browse the repository at this point in the history
  • Loading branch information
nedbat committed Dec 4, 2024
1 parent 37451ed commit 484678e
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions igor.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,10 +133,7 @@ def should_skip(core):
only_one = os.getenv("COVERAGE_ONE_CORE")
if only_one:
if CPYTHON:
if sys.version_info >= (3, 12):
if core != "sysmon":
skipper = f"Only one core: not running {core}"
elif core != "ctrace":
if core != "ctrace":
skipper = f"Only one core: not running {core}"
else:
if core != "pytrace":
Expand Down

0 comments on commit 484678e

Please sign in to comment.