File tree Expand file tree Collapse file tree 1 file changed +11
-2
lines changed Expand file tree Collapse file tree 1 file changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -344,6 +344,14 @@ tox -e integration
344
344
tox -p # parallel execution
345
345
```
346
346
347
+ You can also use tox via uv (if you have uv installed):
348
+
349
+ ``` bash
350
+ # Same commands work with uv
351
+ uv run tox -e lint
352
+ uv run tox -e py311
353
+ ```
354
+
347
355
### Alternative: Direct pytest (for development)
348
356
349
357
``` bash
@@ -359,9 +367,10 @@ pytest
359
367
360
368
Tox ensures consistent test environments between local development and CI:
361
369
- Isolated virtual environments for each test run
362
- - Consistent dependency installation
363
- - Environment variable standardization
370
+ - Consistent dependency installation across different Python versions
371
+ - Environment variable standardization (NO_COLOR, FORCE_COLOR)
364
372
- Cross-platform compatibility
373
+ - Works reliably both with direct ` tox ` commands and via ` uv run tox `
365
374
366
375
## Contributing
367
376
You can’t perform that action at this time.
0 commit comments