File: conftest.py

package info (click to toggle)
sphinxcontrib-htmlhelp 2.1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 640 kB
  • sloc: python: 359; makefile: 48
file content (14 lines) | stat: -rw-r--r-- 240 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
from __future__ import annotations

from pathlib import Path

import pytest

pytest_plugins = (
    'sphinx.testing.fixtures',
)


@pytest.fixture(scope='session')
def rootdir() -> Path:
    return Path(__file__).resolve().parent / 'roots'