mirror of
https://github.com/evennia/evennia.git
synced 2025-10-29 03:12:08 +00:00
Add extra dev tools, as suggested in #2965 by @mikejgray
This commit is contained in:
parent
a2289c46f8
commit
83154de19e
7
.gitignore
vendored
7
.gitignore
vendored
@ -59,3 +59,10 @@ docs/build
|
||||
|
||||
# Obsidian
|
||||
.obsidian
|
||||
|
||||
# Virtual environments
|
||||
.venv/
|
||||
.env/
|
||||
|
||||
# Testing folder
|
||||
.test_game_dir
|
||||
|
||||
5
Makefile
5
Makefile
@ -8,6 +8,7 @@ TESTS ?= evennia
|
||||
default:
|
||||
@echo " Usage: "
|
||||
@echo " make install - install evennia (recommended to activate virtualenv first)"
|
||||
@echo " make installextra - install evennia with extra-requirements (activate virtualenv first)"
|
||||
@echo " make fmt/format - run the black autoformatter on the source code"
|
||||
@echo " make lint - run black in --check mode"
|
||||
@echo " make test - run evennia test suite with all default values."
|
||||
@ -17,6 +18,10 @@ default:
|
||||
install:
|
||||
pip install -e .
|
||||
|
||||
installextra:
|
||||
pip install -e .
|
||||
pip install -r requirements_extra.txt
|
||||
|
||||
format:
|
||||
black $(BLACK_FORMAT_CONFIGS) evennia
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user