We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dcb2d10 commit 50b546fCopy full SHA for 50b546f
.gitmodules
@@ -0,0 +1,3 @@
1
+[submodule "lib/coverize"]
2
+ path = lib/coverize
3
+ url = git://github.com/mmullis/coverize.git
Makefile
@@ -11,8 +11,18 @@ clean:
11
rm -rf ./test/ebin/*.*
12
13
test: compile
14
- erl -noshell -pa ebin -pa test/ebin -s test_suite test -s init stop
+ erl -noshell \
15
+ -pa ebin \
16
+ -pa test/ebin \
17
+ -s test_suite test \
18
+ -s init stop
19
20
coverage: compile
21
+ make -C lib/coverize
22
mkdir -p coverage
- erl -noshell -pa ebin -pa test/ebin -s eunit_helper run_cover -s init stop
23
24
25
26
+ -pa lib/coverize/ebin \
27
+ -s eunit_helper run_cover \
28
lib/coverize
0 commit comments