Skip to content

Commit

Permalink
oops
Browse files Browse the repository at this point in the history
  • Loading branch information
jeertmans committed Dec 10, 2024
1 parent 3a8a1e4 commit 455b346
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -191,6 +191,7 @@ filterwarnings = [
'ignore:pkg_resources is deprecated as an API:DeprecationWarning',
'ignore::DeprecationWarning:pkg_resources.*:',
'ignore:invalid escape sequence.*:DeprecationWarning',
'ignore:invalid escape sequence.*:SyntaxWarning',
]

[tool.ruff]
Expand Down
8 changes: 6 additions & 2 deletions tests/test_checkhealth.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,12 @@ def test_checkhealth(
del sys.modules["qtpy"] # Avoid using cached module

with missing_modules(*names):
if not manimlib_missing and not MANIMGL_NOT_INSTALLED and sys.version_info < (3, 10):
return pytest.skip("See https://github.com/3b1b/manim/issues/2263")
if (
not manimlib_missing
and not MANIMGL_NOT_INSTALLED
and sys.version_info < (3, 10)
):
pytest.skip("See https://github.com/3b1b/manim/issues/2263")

result = runner.invoke(
checkhealth,
Expand Down

0 comments on commit 455b346

Please sign in to comment.