summaryrefslogtreecommitdiff
path: root/test/lib/ansible_test/_internal/dev/container_probe.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/lib/ansible_test/_internal/dev/container_probe.py')
-rw-r--r--test/lib/ansible_test/_internal/dev/container_probe.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/lib/ansible_test/_internal/dev/container_probe.py b/test/lib/ansible_test/_internal/dev/container_probe.py
index be22e01c60..fcbfbe4f08 100644
--- a/test/lib/ansible_test/_internal/dev/container_probe.py
+++ b/test/lib/ansible_test/_internal/dev/container_probe.py
@@ -45,6 +45,7 @@ from ..cgroup import (
class CGroupState(enum.Enum):
"""The expected state of a cgroup related mount point."""
+
HOST = enum.auto()
PRIVATE = enum.auto()
SHADOWED = enum.auto()
@@ -53,6 +54,7 @@ class CGroupState(enum.Enum):
@dataclasses.dataclass(frozen=True)
class CGroupMount:
"""Details on a cgroup mount point that is expected to be present in the container."""
+
path: str
type: t.Optional[str]
writable: t.Optional[bool]