1 changed files with 3 additions and 2 deletions
@ -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…
Reference in new issue