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: 7 additions & 0 deletions src/cobalt/cli/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
import glob
import importlib.util
import sys
import warnings
import webbrowser
from pathlib import Path
from typing import Optional
Expand Down Expand Up @@ -51,6 +52,12 @@ def run(

console.print(f"[bold]Found {len(experiment_files)} experiment file(s)[/bold]")

# Suppress noisy ResourceWarnings (unclosed sockets/transports) from user
# code and third-party libraries — these clutter CI output without being
# actionable by the experiment author.
warnings.filterwarnings("ignore", category=ResourceWarning)
warnings.filterwarnings("ignore", category=RuntimeWarning)

all_reports = []

for exp_file in experiment_files:
Expand Down
Loading