Fix some context files

This commit is contained in:
Griatch
2026-07-25 11:35:29 +02:00
parent a6855e4539
commit e174e49f57
2 changed files with 4 additions and 4 deletions

View File

@ -31,8 +31,8 @@ uv run evennia test --keepdb evennia.server.tests # from inside .test_game_dir
# make (requires `evennia` on PATH):
make test # full suite
make testp # parallel (4 cores)
make tests=evennia.objects.tests test # specific module
make tests=evennia.commands.tests.test_command test # specific test file
make TESTS=evennia.objects.tests test # specific module
make TESTS=evennia.commands.tests.test_command test # specific test file
```
## Formatting

View File

@ -47,8 +47,8 @@ These targets handle init/migrate automatically but require `evennia` installed
```bash
make test # full suite
make testp # parallel (4 cores)
make tests=evennia.objects.tests test # specific module
make tests=evennia.commands.tests.test_command test # specific test file
make TESTS=evennia.objects.tests test # specific module
make TESTS=evennia.commands.tests.test_command test # specific test file
```
The Makefile creates `.test_game_dir/`, runs `evennia migrate`, then `evennia test --keepdb`.