feat: initial commit - Phase 1 & 2 core features

This commit is contained in:
hiderfong
2026-04-22 17:07:33 +08:00
commit 1773bda06b
25005 changed files with 6252106 additions and 0 deletions
@@ -0,0 +1,29 @@
"""
Test the logger module.
"""
# Author: Gael Varoquaux <gael dot varoquaux at normalesup dot org>
# Copyright (c) 2009 Gael Varoquaux
# License: BSD Style, 3 clauses.
import re
from joblib.logger import PrintTime
def test_print_time(tmpdir, capsys):
# A simple smoke test for PrintTime.
logfile = tmpdir.join("test.log").strpath
print_time = PrintTime(logfile=logfile)
print_time("Foo")
# Create a second time, to smoke test log rotation.
print_time = PrintTime(logfile=logfile)
print_time("Foo")
# And a third time
print_time = PrintTime(logfile=logfile)
print_time("Foo")
out_printed_text, err_printed_text = capsys.readouterr()
# Use regexps to be robust to time variations
match = r"Foo: 0\..s, 0\..min\nFoo: 0\..s, 0..min\nFoo: " + r".\..s, 0..min\n"
if not re.match(match, err_printed_text):
raise AssertionError("Excepted %s, got %s" % (match, err_printed_text))