chore: lint

This commit is contained in:
Wing Lian
2023-11-05 19:49:31 -05:00
parent 0402d19759
commit c74f045ba7
6 changed files with 10 additions and 5 deletions

22
tests/e2e/utils.py Normal file
View File

@@ -0,0 +1,22 @@
"""
helper utils for tests
"""
import shutil
import tempfile
from functools import wraps
def with_temp_dir(test_func):
@wraps(test_func)
def wrapper(*args, **kwargs):
# Create a temporary directory
temp_dir = tempfile.mkdtemp()
try:
# Pass the temporary directory to the test function
test_func(temp_dir, *args, **kwargs)
finally:
# Clean up the directory after the test
shutil.rmtree(temp_dir)
return wrapper