File: __init__.py

package info (click to toggle)
python-pytest-resource-path 1.3.0-1.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 192 kB
  • sloc: python: 398; makefile: 4
file content (16 lines) | stat: -rw-r--r-- 734 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
"""Implements fixtures to get path to resource."""
from pytest_resource_path.absolute_path_factory import *  # noqa
from pytest_resource_path.exceptions import *  # noqa
from pytest_resource_path.path_factory import *  # noqa
from pytest_resource_path.path_to_resource_factory import *  # noqa
from pytest_resource_path.pytest_resource_path import *  # noqa

__version__ = "1.3.0"

__all__ = []
# pylint: disable=undefined-variable
__all__ += absolute_path_factory.__all__  # type: ignore # noqa
__all__ += exceptions.__all__  # type: ignore # noqa
__all__ += path_factory.__all__  # type: ignore # noqa
__all__ += path_to_resource_factory.__all__  # type: ignore # noqa
__all__ += pytest_resource_path.__all__  # type: ignore # noqa