Skip to content
Closed
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
1 change: 0 additions & 1 deletion .github/codeql/extensions/codeql-pack.yml
Original file line number Diff line number Diff line change
@@ -1 +0,0 @@

2 changes: 1 addition & 1 deletion ai-projects/quantum-ml/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ black>=26.5.1,<27.0.0
# Model Context Protocol (MCP) Server
mcp>=1.28.1
pydantic>=2.13.4
anyio>=4.14.1
anyio>=4.14.2

# (Removed) pip-check-duplicates was referenced but no distribution exists.
# If dependency insight is needed, install pipdeptree instead:
Expand Down
1 change: 0 additions & 1 deletion tests/test_workflow_lint_blockers.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
import pytest
import yaml


pytestmark = pytest.mark.unit


Expand Down
5 changes: 1 addition & 4 deletions tests/test_workflow_yamllint_regressions.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
import pytest
import yaml


REPO_ROOT = Path(__file__).resolve().parents[1]


Expand Down Expand Up @@ -54,8 +53,6 @@ def test_ossar_workflow_steps_and_branch_spacing_regression() -> None:
def test_summary_workflow_has_no_trailing_whitespace() -> None:
content = _read(".github/workflows/summary.yml")
trailing_ws_lines = [
line_number
for line_number, line in enumerate(content.splitlines(), start=1)
if line != line.rstrip(" \t")
line_number for line_number, line in enumerate(content.splitlines(), start=1) if line != line.rstrip(" \t")
]
assert not trailing_ws_lines, f"Trailing whitespace found on lines: {trailing_ws_lines}"
Loading