File size: 136 Bytes
7885a28 |
1 2 3 4 5 6 7 8 9 10 |
import uuid
import pytest
@pytest.fixture
def setup_path():
"""Fixture for setup path"""
return f"tmp.__{uuid.uuid4()}__.h5"
|
7885a28 |
1 2 3 4 5 6 7 8 9 10 |
import uuid
import pytest
@pytest.fixture
def setup_path():
"""Fixture for setup path"""
return f"tmp.__{uuid.uuid4()}__.h5"
|