Skip to content

Commit

Permalink
only keep fixtures in new conftest.py
Browse files Browse the repository at this point in the history
  • Loading branch information
behackl committed Nov 11, 2024
1 parent 95bb707 commit a2a605c
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions tests-simple/conftest.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
from __future__ import annotations

import logging
import sys
from pathlib import Path

import logging
import sys
import pytest
import manim


"""
import cairo
import manim
import moderngl
def pytest_report_header(config):
Expand All @@ -26,8 +28,9 @@ def pytest_report_header(config):
f"renderer: {info['GL_RENDERER'].strip()}",
f"version: {info['GL_VERSION'].strip()}\n",
)
"""


"""
def pytest_addoption(parser):
parser.addoption(
"--skip_slow",
Expand Down Expand Up @@ -63,7 +66,7 @@ def pytest_collection_modifyitems(config, items):
for item in items:
if "slow" in item.keywords:
item.add_marker(slow_skip)

"""

@pytest.fixture(autouse=True)
def temp_media_dir(tmpdir, monkeypatch, request):
Expand Down

0 comments on commit a2a605c

Please sign in to comment.