This file is indexed.

/usr/lib/python2.7/dist-packages/pytest_bdd/types.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
"""Common type definitions."""

FEATURE = "feature"
SCENARIO_OUTLINE = "scenario outline"
EXAMPLES = "examples"
EXAMPLES_VERTICAL = "examples vertical"
EXAMPLES_HEADERS = "example headers"
EXAMPLE_LINE = "example line"
EXAMPLE_LINE_VERTICAL = "example line vertical"
SCENARIO = "scenario"
BACKGROUND = "background"
GIVEN = "given"
WHEN = "when"
THEN = "then"
TAG = "tag"

STEP_TYPES = (GIVEN, WHEN, THEN)