Skip to content

Commit 960e8b5

Browse files
authored
chore: update taskfile (#1221)
# [AAP-XXXXX] Brief Title Describing the Change ## Description <!-- Mandatory: Provide a clear, concise description of the changes and their purpose --> - remove `cmd:` is not necessary - correct the wrong `ruff` desc Closes #XXX (if applicable) Jira: [AAP-XXXXX](https://jira.aap.com/browse/AAP-XXXXX) (if applicable) ## Type of Change <!-- Mandatory: Check one or more boxes that apply --> - [ ] Bug fix (non-breaking change which fixes an issue) - [ ] New feature (non-breaking change which adds functionality) - [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected) - [ ] Documentation update - [ ] Test update - [ ] Refactoring (no functional changes) - [ ] Development environment change - [ ] Configuration change - [ ] CI change ## Self-Review Checklist <!-- These items help ensure quality - they complement our automated CI checks --> - [ ] I have performed a self-review of my code - [ ] I have added relevant comments to complex code sections - [ ] I have updated documentation where needed - [ ] I have considered the security impact of these changes - [ ] I have considered performance implications - [ ] I have thought about error handling and edge cases - [ ] I have tested the changes in my local environment - [ ] I have run the linters and test suite locally - [ ] I have tested the changes on integration environment ## Testing Instructions <!-- Optional for test-only changes. Mandatory for all other changes --> <!-- Must be detailed enough for reviewers to reproduce --> ### Prerequisites <!-- List any specific setup required --> ### Steps to Test 1. 2. 3. ### Expected Results <!-- Describe what should happen after following the steps --> ## Additional Context <!-- Optional but helpful information --> ### Required Actions <!-- Check if changes require work in other areas --> <!-- Remove section if no external actions needed --> - [ ] Requires documentation updates <!-- API docs, feature docs, deployment guides --> - [ ] Requires downstream repository changes <!-- Specify repos: django-ansible-base, eda-server, etc. --> - [ ] Requires infrastructure/deployment changes <!-- CI/CD, installer updates, new services --> - [ ] Requires coordination with other teams <!-- UI team, platform services, infrastructure --> - [ ] Blocked by PR/MR: #XXX | <https://github.com/example/repo/pull/XXX> <!-- Reference blocking PRs/MRs with brief context --> ### Screenshots/Logs <!-- Add if relevant to demonstrate the changes --> Signed-off-by: reid_liu <guliu@redhat.com>
1 parent 9cad007 commit 960e8b5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Taskfile.dist.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ tasks:
2121
dev:init:
2222
desc: "Initialize local development environment"
2323
cmds:
24-
- cmd: poetry install -E dev
25-
- cmd: pre-commit install
24+
- poetry install -E dev
25+
- pre-commit install
2626

2727
run:api:
2828
desc: "Run API server locally"
@@ -99,7 +99,7 @@ tasks:
9999
- poetry run isort -- {{.CLI_ARGS | default "."}}
100100

101101
lint:ruff:
102-
desc: "Check code with `flake8`."
102+
desc: "Check code with `ruff`."
103103
cmds:
104104
- poetry run ruff -- {{.CLI_ARGS | default "."}}
105105

0 commit comments

Comments
 (0)