Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ doc:
rebar3 as doc ex_doc

etest:
rebar3 as test escriptize
rebar3 as test eunit --cover
rebar3 as test proper --cover
rebar3 as test cover --verbose
Expand Down
2 changes: 2 additions & 0 deletions rebar.config
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,9 @@
{profiles, [
{test, [
{erl_opts, [debug_info]},
{extra_src_dirs, ["test"]},
{cover_enabled, true},
{cover_opts, [{verbose, true}]},
{deps, [
{proper, "1.4.0"}
]},
Expand Down
2 changes: 1 addition & 1 deletion test/test_packbeam.erl → test/packbeam_api_tests.erl
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
%%
%% SPDX-License-Identifier: Apache-2.0 OR LGPL-2.1-or-later

-module(test_packbeam).
-module(packbeam_api_tests).

-include_lib("proper/include/proper.hrl").
-include_lib("eunit/include/eunit.hrl").
Expand Down
Loading