mirror of
https://github.com/ManimCommunity/manim.git
synced 2026-06-22 10:01:47 +00:00
* Add ruff config for pytest * Fixes for pre-commit * Changes to make pre-commit happy (Unrelated to PR) --------- Co-authored-by: Tristan Schulz <tristanschulz1200@gmail.com>
74 lines
1.6 KiB
Python
74 lines
1.6 KiB
Python
from __future__ import annotations
|
|
|
|
from pathlib import Path
|
|
|
|
from manim import capture
|
|
|
|
from ..utils.logging_tester import *
|
|
|
|
|
|
@logs_comparison(
|
|
"BasicSceneLoggingTest.txt",
|
|
"logs/basic_scenes_square_to_circle_SquareToCircle.log",
|
|
)
|
|
def test_logging_to_file(tmp_path, python_version):
|
|
path_basic_scene = Path("tests/test_logging/basic_scenes_square_to_circle.py")
|
|
command = [
|
|
python_version,
|
|
"-m",
|
|
"manim",
|
|
"-ql",
|
|
"-v",
|
|
"DEBUG",
|
|
"--log_to_file",
|
|
"--media_dir",
|
|
str(tmp_path),
|
|
str(path_basic_scene),
|
|
"SquareToCircle",
|
|
]
|
|
_, err, exitcode = capture(command)
|
|
assert exitcode == 0, err
|
|
|
|
|
|
def test_error_logging(tmp_path, python_version):
|
|
path_error_scene = Path("tests/test_logging/basic_scenes_error.py")
|
|
|
|
command = [
|
|
python_version,
|
|
"-m",
|
|
"manim",
|
|
"-ql",
|
|
"--media_dir",
|
|
str(tmp_path),
|
|
str(path_error_scene),
|
|
]
|
|
|
|
out, err, exitcode = capture(command)
|
|
if err is None:
|
|
err = out
|
|
assert exitcode != 0
|
|
assert "Traceback (most recent call last)" in err
|
|
|
|
|
|
@logs_comparison(
|
|
"bad_tex_scene_BadTex.txt",
|
|
"logs/bad_tex_scene_BadTex.log",
|
|
)
|
|
def test_tex_error_logs(tmp_path, python_version):
|
|
bad_tex_scene = Path("tests/test_logging/bad_tex_scene.py")
|
|
command = [
|
|
python_version,
|
|
"-m",
|
|
"manim",
|
|
"-ql",
|
|
"--log_to_file",
|
|
"-v",
|
|
"INFO",
|
|
"--media_dir",
|
|
str(tmp_path),
|
|
str(bad_tex_scene),
|
|
"BadTex",
|
|
]
|
|
_, err, exitcode = capture(command)
|
|
assert exitcode != 0
|
|
assert len(err) > 0
|