mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 05:07:42 +03:00
make: Add way to run individual tests
This commit is contained in:
parent
785c20f6ee
commit
5fd3895de5
1 changed files with 10 additions and 0 deletions
10
GNUmakefile
10
GNUmakefile
|
@ -75,6 +75,9 @@ clean:
|
|||
test:
|
||||
$(BUSTED) --lua=$(RUNWITH)
|
||||
|
||||
test-%:
|
||||
$(BUSTED) --lua=$(RUNWITH) -r $*
|
||||
|
||||
integration-test: all
|
||||
$(MKDIR) data
|
||||
$(RUNWITH) prosodyctl --config ./spec/scansion/prosody.cfg.lua start
|
||||
|
@ -82,6 +85,13 @@ integration-test: all
|
|||
$(RUNWITH) prosodyctl --config ./spec/scansion/prosody.cfg.lua stop \
|
||||
exit $$R
|
||||
|
||||
integration-test-%: all
|
||||
$(MKDIR) data
|
||||
$(RUNWITH) prosodyctl --config ./spec/scansion/prosody.cfg.lua start
|
||||
$(SCANSION) ./spec/scansion/$*.scs; R=$$? \
|
||||
$(RUNWITH) prosodyctl --config ./spec/scansion/prosody.cfg.lua stop \
|
||||
exit $$R
|
||||
|
||||
coverage:
|
||||
-rm -- luacov.*
|
||||
$(BUSTED) --lua=$(RUNWITH) -c
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue