summaryrefslogtreecommitdiff
path: root/tests/execute/conftest.py
blob: 9e5d507374c6b5b4281b74ee80d39a548cd4722e (plain)
1
2
3
4
5
6
7
8
9
import os
from typing import Dict

import pytest


@pytest.fixture(scope="session")
def os_env() -> Dict[str, str]:
    return os.environ.copy()