summaryrefslogtreecommitdiff
path: root/tests/execute/conftest.py
blob: 3c97340e03b4f3822825e793cc8dea6adb7c4458 (plain)
1
2
3
4
5
6
7
8
9
10
from __future__ import annotations

import os

import pytest


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