This file is indexed.

/usr/lib/python2.7/dist-packages/pytest_bdd/fixtures.py is in python-pytest-bdd 2.18.2-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
"""pytest-bdd built-in fixtures."""

import os.path

import pytest


@pytest.fixture
def pytestbdd_feature_base_dir(request):
    """Base feature directory."""
    return os.path.dirname(request.module.__file__)


@pytest.fixture
def pytestbdd_strict_gherkin():
    """Parse features to be strict gherkin."""
    return True