MCPcopy Create free account
hub / github.com/openai/openai-agents-python / load_auto_skip

Function load_auto_skip

examples/run_examples.py:561–566  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

559
560
561def load_auto_skip() -> set[str]:
562 env_value = os.environ.get("EXAMPLES_AUTO_SKIP", "")
563 if env_value.strip():
564 parts = re.split(r"[\s,]+", env_value.strip())
565 return {normalize_relpath(p) for p in parts if p}
566 return {normalize_relpath(p) for p in DEFAULT_AUTO_SKIP}
567
568
569def write_main_log_line(handle, line: str) -> None:

Callers 2

run_examplesFunction · 0.85
mainFunction · 0.85

Calls 2

normalize_relpathFunction · 0.85
getMethod · 0.45

Tested by

no test coverage detected