@@ -243,7 +243,7 @@ You can also check available environments with: `hatch env show`
243243
2442441 . ** Create a branch:** ` git checkout -b feature/your-feature-name `
2452452 . ** 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)
2472474 . ** Run linting:** ` hatch run lint:all ` (or use the VS Code task)
2482485 . ** Fix linting issues:** ` hatch run lint:style ` for formatting
2492496 . ** 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)
299299hatch 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
305305hatch 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