name: Bug Report
about: Yamllint line-length violations in browser_test.yml
title: '[BUG] CI/CD: Line length limits exceeded in browser_test.yml'
labels: bug, ci-cd
assignees: ''
Godot Version: 4.6.3-stable
OS: N/A (GitHub Actions Runner / ubuntu-latest)
Steps to Reproduce:
- Run the automated linting checks in the CI pipeline.
- Observe warnings for long lines.
Expected Behavior:
Lines inside configuration scripts should remain under the defined threshold (90 characters) or use explicit linter directive bypasses for long expressions that cannot be broken down.
Actual Behavior:
Linter flags 3 instances of [line-length] line too long (> 90 characters):
- Line 109: Cache key descriptive comment.
- Line 110: Dynamic cache key declaration containing multiple context variables.
- Line 125: Embedded python HTTP server security header configuration statement.
Additional Context:
Can be safely mitigated by wrapping the specific lines or steps with # yamllint disable rule:line-length and # yamllint enable rule:line-length blocks.
name: Bug Report
about: Yamllint line-length violations in browser_test.yml
title: '[BUG] CI/CD: Line length limits exceeded in browser_test.yml'
labels: bug, ci-cd
assignees: ''
Godot Version: 4.6.3-stable
OS: N/A (GitHub Actions Runner / ubuntu-latest)
Steps to Reproduce:
Expected Behavior:
Lines inside configuration scripts should remain under the defined threshold (90 characters) or use explicit linter directive bypasses for long expressions that cannot be broken down.
Actual Behavior:
Linter flags 3 instances of
[line-length] line too long (> 90 characters):Additional Context:
Can be safely mitigated by wrapping the specific lines or steps with
# yamllint disable rule:line-lengthand# yamllint enable rule:line-lengthblocks.