File: __init__.py

package info (click to toggle)
pytkdocs 0.16.5-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 784 kB
  • sloc: python: 4,621; makefile: 28; javascript: 13
file content (12 lines) | stat: -rw-r--r-- 336 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
"""In this module we simply define some path constants."""

from pathlib import Path

TESTS_DIR: Path = Path(__file__).parent
"""The tests directory path object."""

TMP_DIR: Path = TESTS_DIR / "tmp"
"""The tests/tmp directory path object."""

FIXTURES_DIR: Path = TESTS_DIR / "fixtures"
"""The tests/fixtures directory path object."""