Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion src/scikit_build_core/program_search.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

import contextlib
import json
import os
import shutil
import subprocess
import sys
Expand Down Expand Up @@ -33,7 +34,11 @@


# Make sure we don't wait forever for programs to respond
TIMEOUT = 10 if sys.platform.startswith("win") else 5
# CI services can be really slow under load
if os.environ.get("CI", ""):
TIMEOUT = 20
else:
TIMEOUT = 10 if sys.platform.startswith("win") else 5

Check warning on line 41 in src/scikit_build_core/program_search.py

View check run for this annotation

Codecov / codecov/patch

src/scikit_build_core/program_search.py#L41

Added line #L41 was not covered by tests


class Program(NamedTuple):
Expand Down
Loading