Skip to content
Open
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 @@

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