aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--test/tracer_SUITE.erl8
1 files changed, 7 insertions, 1 deletions
diff --git a/test/tracer_SUITE.erl b/test/tracer_SUITE.erl
index d87a8dc..5a7d0f7 100644
--- a/test/tracer_SUITE.erl
+++ b/test/tracer_SUITE.erl
@@ -29,9 +29,15 @@ suite() ->
%% We initialize trace patterns here. Appropriate would be in
%% init_per_suite/1, but this works just as well.
all() ->
- cowboy_tracer_h:set_trace_patterns(),
cowboy_test:common_all().
+init_per_suite(Config) ->
+ cowboy_tracer_h:set_trace_patterns(),
+ Config.
+
+end_per_suite(_) ->
+ ok.
+
%% We want tests for each group to execute sequentially
%% because we need to modify the protocol options. Groups
%% can run in parallel however.