Skip to content

Commit

Permalink
DO NOT MERGE
Browse files Browse the repository at this point in the history
trying to figure out why we get one strange test failure on conda/macOS
  • Loading branch information
orlitzky committed Oct 16, 2024
1 parent 832c792 commit d9dbe60
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/sage/doctest/forker.py
Original file line number Diff line number Diff line change
Expand Up @@ -794,6 +794,13 @@ def compiler(example):
outcome = SUCCESS

check_timer.stop()

# TESTING ONLY
if not hasattr(example, 'walltime'):
example.walltime = 0.0
if not hasattr(example, 'cputime'):
example.cputime = 0.0

self.total_walltime += example.walltime + check_timer.walltime

# Report the outcome.
Expand Down

0 comments on commit d9dbe60

Please sign in to comment.