Skip to content

Commit acdda70

Browse files
farhanclaude
andcommitted
chore: rename lint tox env to quality
`quality` is the established standard across the Open edX ecosystem. Updated tox.ini, Makefile, and CI matrix accordingly. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent efd6cf5 commit acdda70

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
fail-fast: false
1616
matrix:
1717
python-version: ["3.12"]
18-
toxenv: [lint, py]
18+
toxenv: [quality, py]
1919

2020
steps:
2121
- name: Checkout repository

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ requirements: ## install development environment requirements
2424
uv tool install tox --with tox-uv
2525

2626
quality-python: ## Run python linters
27-
uv run tox -e lint
27+
uv run tox -e quality
2828

2929
quality: quality-python ## Run linters
3030

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
[tox]
2-
envlist = py312, lint
2+
envlist = py312, quality
33
requires = tox-uv>=1
44

5-
[testenv:lint]
5+
[testenv:quality]
66
runner = uv-venv-lock-runner
77
dependency_groups = quality
88
commands =

0 commit comments

Comments
 (0)