lovely time savings running tests in parallel via 'prove'. Thanks Perl land!
This commit is contained in:
parent
c8f6c05bf4
commit
6397c8bade
5
Makefile
5
Makefile
@ -35,6 +35,11 @@ test-unit:
|
|||||||
test-integration:
|
test-integration:
|
||||||
NODE_NDEBUG= ./node_modules/.bin/tape test/integration/*.test.js
|
NODE_NDEBUG= ./node_modules/.bin/tape test/integration/*.test.js
|
||||||
|
|
||||||
|
.PHONY: test-in-parallel
|
||||||
|
test-in-parallel:
|
||||||
|
NODE_NDEBUG= prove -j15 -e ./node_modules/.bin/tape \
|
||||||
|
test/unit/*.test.js test/integration/*.test.js
|
||||||
|
|
||||||
.PHONY: clean
|
.PHONY: clean
|
||||||
clean::
|
clean::
|
||||||
rm -f triton-*.tgz
|
rm -f triton-*.tgz
|
||||||
|
Reference in New Issue
Block a user