-
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.
Updated unit tests to demonstrate argument exclusion feature
- Loading branch information
1 parent
c2683c3
commit 54230c5
Showing
8 changed files
with
301 additions
and
103 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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,16 @@ | ||
import os | ||
import shutil | ||
import pytest | ||
from pickled_pipeline import Cache | ||
|
||
TEST_CACHE_DIR = "test_pipeline_cache" | ||
|
||
|
||
@pytest.fixture(scope="function") | ||
def cache(): | ||
# Set up: Create a Cache instance with a test cache directory | ||
cache = Cache(cache_dir=TEST_CACHE_DIR) | ||
yield cache | ||
# Tear down: Remove the test cache directory after each test | ||
if os.path.exists(TEST_CACHE_DIR): | ||
shutil.rmtree(TEST_CACHE_DIR) |
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
Oops, something went wrong.