mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-06-04 11:25:52 +08:00

* test(integration): set the base for integration tests * ci: add ci pipeline for integration test * ci: add ci pipeline for integration test * ci: add ci pipeline for integration test * ci: add ci pipeline for integration test * ci: add ci pipeline for integration test * ci: add ci pipeline for integration test * ci: add ci pipeline for integration test * ci: add ci pipeline for integration test * ci: add ci pipeline for integration test * ci: add ci pipeline for integration test * ci: add ci pipeline for integration test * ci: add ci pipeline for integration test * ci: add ci pipeline for integration test * ci: add ci pipeline for integration test * ci: add ci pipeline for integration test * ci: add ci pipeline for integration test
16 lines
308 B
Python
16 lines
308 B
Python
from typing import Any, Generator
|
|
|
|
import pytest
|
|
|
|
from fixtures import types
|
|
|
|
|
|
@pytest.fixture(scope="package")
|
|
def tmpfs(
|
|
tmp_path_factory: pytest.TempPathFactory,
|
|
) -> Generator[types.LegacyPath, Any, None]:
|
|
def _tmp(basename: str):
|
|
return tmp_path_factory.mktemp(basename)
|
|
|
|
yield _tmp
|