Browse Source

🎨 [pre-commit.ci] Auto format from pre-commit.com hooks

pull/13543/head
pre-commit-ci[bot] 1 week ago
parent
commit
6b8e66c725
  1. 5
      tests/test_tutorial/test_background_tasks/conftest.py

5
tests/test_tutorial/test_background_tasks/conftest.py

@ -1,11 +1,12 @@
import os
import pytest
from pathlib import Path
import pytest
@pytest.fixture(name="path_to_log_file")
def log_path():
log = Path("log.txt")
yield log
if log.is_file():
os.remove(log) # pragma: no cover
os.remove(log) # pragma: no cover

Loading…
Cancel
Save