1 changed files with 3 additions and 2 deletions
@ -1,11 +1,12 @@ |
|||||
import os |
import os |
||||
import pytest |
|
||||
from pathlib import Path |
from pathlib import Path |
||||
|
|
||||
|
import pytest |
||||
|
|
||||
|
|
||||
@pytest.fixture(name="path_to_log_file") |
@pytest.fixture(name="path_to_log_file") |
||||
def log_path(): |
def log_path(): |
||||
log = Path("log.txt") |
log = Path("log.txt") |
||||
yield log |
yield log |
||||
if log.is_file(): |
if log.is_file(): |
||||
os.remove(log) # pragma: no cover |
os.remove(log) # pragma: no cover |
||||
|
Loading…
Reference in new issue