We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0ffd66b commit ce2488cCopy full SHA for ce2488c
4 files changed
.gitignore
@@ -6,3 +6,4 @@ deps
6
*.so
7
_build
8
.rebar3
9
+.rebar
Makefile
@@ -17,18 +17,15 @@ xref:
17
@$(REBAR) xref
18
19
test:
20
- @$(REBAR) eunit
+ @$(REBAR) as test eunit eqc
21
22
clean:
23
@$(REBAR) clean
24
25
dialyzer:
26
@$(REBAR) dialyzer
27
28
-check-all:
29
30
- @$(REBAR) xref
31
- @$(REBAR) dialyzer
+check-all: test xref dialyzer
32
33
crosslang:
34
@echo "do ERL_LIBS=../ before you make crosslang or fail"
rebar.config
@@ -13,10 +13,10 @@
13
"src/msgpack_ext.erl"
14
]}.
15
16
-{plugins, [
- rebar3_eqc,
- rebar3_hex
-]}.
+{profiles,
+ [{test,
+ [{plugins, [rebar3_eqc]}]
+ }]}.
%% {port_sources, ["c_src/*.c"]}.
%% {port_env, [
rebar.config.script
0 commit comments