-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add temporary directory fixture for pytest
- Loading branch information
1 parent
be659c8
commit 330ea6b
Showing
1 changed file
with
23 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
from pathlib import Path | ||
|
||
import pytest | ||
|
||
|
||
def pytest_addoption(parser): | ||
"""Sets up optional argument to keep temporary testing directory.""" | ||
parser.addoption( | ||
"--keep-tmp", | ||
action="store_true", | ||
help="Keep temporary directory after testing. Useful for debugging.", | ||
) | ||
|
||
|
||
@pytest.fixture(scope="class") | ||
def pass_options(request): | ||
"""Adds optional argument to a test class.""" | ||
request.cls.KEEP_TMP = request.config.getoption("--keep-tmp") | ||
|
||
|
||
@pytest.fixture(scope="function", autouse=True) | ||
def temp_output_dir(tmpdir_factory) -> Path: | ||
return Path(tmpdir_factory.mktemp("tmp-")) |