Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -81,10 +81,6 @@ exclude = [
"^src/shepherd_kernel_v3_reference/spikes/",
]

[[tool.mypy.overrides]]
module = "shepherd_core.export.atif"
warn_unused_ignores = false

[[tool.mypy.overrides]]
module = "shepherd_export.atif"
warn_unused_ignores = false
Expand Down
1 change: 0 additions & 1 deletion shepherd/packages/dialect/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@ pythonpath = ["src", "tests"]
addopts = ["-q", "-m", "not container"]
markers = [
"container: needs Linux kernel features (Landlock, fuse-overlayfs); run via `make test_container` in vcs-core/packages/core",
"workspace_component: fast workspace-control unit/component tests with no real retained-run workspace",
"workspace_smoke: minimal real workspace-control canaries for the local fast lane",
"workspace_native_jail: workspace-control tests that require a proven native syscall jail",
"slow: expensive /workspace-control scenario tests excluded from fast local dialect checks",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -347,14 +347,6 @@ def test_device_context_handles_cleanup_exceptions(self):
# Sandbox should be removed from tracking even if cleanup fails
assert "failing-sandbox" not in sandboxes

@pytest.mark.skip(reason="Device nesting is now prohibited - see test_device_context_nested_raises_error")
def test_device_context_cleans_nested_device_sandboxes_independently(self):
"""Nested Device contexts should clean their own sandboxes.

NOTE: This test is skipped because Device nesting is now prohibited.
The test_device_context_nested_raises_error test verifies this behavior.
"""

def test_device_context_uses_discard_if_no_cleanup(self):
"""Device context should use discard() if cleanup() is not available."""
from shepherd_runtime.scope import Scope
Expand Down
Loading