File: conftest.py

package info (click to toggle)
tox 4.49.1-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 2,612 kB
  • sloc: python: 26,672; javascript: 114; sh: 22; makefile: 15
file content (10 lines) | stat: -rw-r--r-- 157 bytes parent folder | download | duplicates (3)
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()