Fix typo in makefile
This commit is contained in:
parent
e402bfa6a9
commit
db506dc58c
1 changed files with 2 additions and 3 deletions
5
Makefile
5
Makefile
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
BLACK_FORMAT_CONFIGS = --target-version py37 --line-length 100
|
BLACK_FORMAT_CONFIGS = --target-version py37 --line-length 100
|
||||||
TEST_GAME_DIR = .test_game_dir
|
TEST_GAME_DIR = .test_game_dir
|
||||||
TESTS?=evennia
|
tests?=evennia
|
||||||
|
|
||||||
default:
|
default:
|
||||||
@echo " Usage: "
|
@echo " Usage: "
|
||||||
|
|
@ -29,11 +29,10 @@ test:
|
||||||
evennia --init $(TEST_GAME_DIR);\
|
evennia --init $(TEST_GAME_DIR);\
|
||||||
cd $(TEST_GAME_DIR);\
|
cd $(TEST_GAME_DIR);\
|
||||||
evennia migrate;\
|
evennia migrate;\
|
||||||
evennia test --keepdb $(TESTS);\
|
evennia test --keepdb $(tests);\
|
||||||
|
|
||||||
testp:
|
testp:
|
||||||
evennia --init $(TEST_GAME_DIR);\
|
evennia --init $(TEST_GAME_DIR);\
|
||||||
cd $(TEST_GAME_DIR);\
|
cd $(TEST_GAME_DIR);\
|
||||||
evennia migrate;\
|
evennia migrate;\
|
||||||
evennia test --keepdb --parallel 4 $(tests);\
|
evennia test --keepdb --parallel 4 $(tests);\
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue