Alexander Petrovsky 9 лет назад
Родитель
Сommit
b5ea5a11a7
2 измененных файлов с 2 добавлено и 3 удалено
  1. 1 2
      Makefile
  2. 1 1
      rebar.config

+ 1 - 2
Makefile

@@ -15,7 +15,6 @@ run:
 
 test:
 		$(REBAR) eunit skip_deps=true verbose=3
-		$(REBAR) ct skip_deps=true verbose=3
 
 doc:
 		$(REBAR) as dev edoc
@@ -31,7 +30,7 @@ else
 		dialyzer --build_plt --output_plt erlang.plt --apps $(DIALYZER_APPS)
 endif
 ifneq ("$(wildcard pooler.plt)","")
-		@echo "redis_pool plt file already exists"
+		@echo "pooler plt file already exists"
 else
 		dialyzer --build_plt --output_plt pooler.plt _build/default/lib/*/ebin/
 endif

+ 1 - 1
rebar.config

@@ -40,7 +40,7 @@
     ]}
 ]}.
 
-{eunit_opts, [verbose, {report, {eunit_progress, [colored, profile]}}]}.
+{eunit_opts, [{report, {eunit_progress, [colored, profile]}}]}.
 {eunit_compile_opts, [export_all]}.
 
 {ct_opts, []}.