Skip to content

Commit 83fa524

Browse files
committed
chore: fix typos and unused import
1 parent 15094cf commit 83fa524

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

CLAUDE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ cd intellij-client
9898
hatch run test
9999

100100
# Test specific environment
101-
hatch run devel.py312-rf73:test
101+
hatch run devel.py3.12-rf73:test
102102

103103
# Coverage reporting
104104
hatch run cov

CONTRIBUTING.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ You can also check available environments with: `hatch env show`
243243

244244
1. **Create a branch:** `git checkout -b feature/your-feature-name`
245245
2. **Make your changes** following the project's coding standards
246-
3. **Run tests:** `hatch run devel.py312-rf73:test` (single combination for faster development)
246+
3. **Run tests:** `hatch run devel.py3.12-rf73:test` (single combination for faster development)
247247
4. **Run linting:** `hatch run lint:all` (or use the VS Code task)
248248
5. **Fix linting issues:** `hatch run lint:style` for formatting
249249
6. **Commit your changes** with a descriptive commit message
@@ -297,9 +297,9 @@ hatch run test.rf41:test # Robot Framework 4.1.x
297297

298298
# Run tests in specific development environments (single combination)
299299
hatch run devel:test # ⚠️ Runs ALL matrix combinations (Python 3.10-3.14 × RF 4.1-7.3)
300-
hatch run devel.py311-rf70:test # Python 3.11 with Robot Framework 7.0.x (single combination)
301-
hatch run devel.py312-rf73:test # Python 3.12 with Robot Framework 7.3.x (single combination)
302-
hatch run devel.py313-rf73:test # Python 3.13 with Robot Framework 7.3.x (single combination)
300+
hatch run devel.py3.11-rf70:test # Python 3.11 with Robot Framework 7.0.x (single combination)
301+
hatch run devel.py3.12-rf73:test # Python 3.12 with Robot Framework 7.3.x (single combination)
302+
hatch run devel.py3.13-rf73:test # Python 3.13 with Robot Framework 7.3.x (single combination)
303303

304304
# Test against development versions of Robot Framework
305305
hatch run rfbeta:test # Robot Framework beta/RC versions
@@ -310,7 +310,7 @@ hatch run rfdevel:test # Local Robot Framework development version
310310
**⚠️ Important Matrix Behavior:**
311311
- `hatch run test` executes tests for **all combinations** in the matrix (48 combinations: 6 Python versions × 8 RF versions)
312312
- `hatch run devel:test` also runs **all matrix combinations**
313-
- For faster development, use specific combinations like `hatch run devel.py312-rf73:test`
313+
- For faster development, use specific combinations like `hatch run devel.py3.12-rf73:test`
314314
- For CI/full testing, use the matrix commands
315315

316316
**Available Environment Matrix:**

0 commit comments

Comments
 (0)