Skip to content

Commit 7736b3f

Browse files
committed
Increase the timeout value of a test (for running on GitHub actions)
1 parent 3c2cf15 commit 7736b3f

File tree

2 files changed

+8
-10
lines changed

2 files changed

+8
-10
lines changed

rebar.config

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
1-
%%% -*- Erlang -*-
2-
%%% -*- coding: utf-8 -*-
3-
%%% -*- erlang-indent-level: 2 -*-
1+
%%% -*- coding: utf-8; erlang-indent-level: 2 -*-
42
%%% -------------------------------------------------------------------
5-
%%% Copyright 2010-2020 Manolis Papadakis <[email protected]>,
6-
%%% Eirini Arvaniti <[email protected]>
3+
%%% Copyright 2010-2022 Manolis Papadakis <[email protected]>,
4+
%%% Eirini Arvaniti <[email protected]>,
75
%%% and Kostis Sagonas <[email protected]>
86
%%%
97
%%% This file is part of PropEr.
@@ -21,7 +19,7 @@
2119
%%% You should have received a copy of the GNU General Public License
2220
%%% along with PropEr. If not, see <http://www.gnu.org/licenses/>.
2321

24-
%%% Author(s): Manolis Papadakis, Kostis Sagonas
22+
%%% Author(s): Manolis Papadakis and Kostis Sagonas
2523
%%% Description: Options for rebar/rebar3
2624

2725
{minimum_otp_vsn, "20.0"}.

test/proper_tests.erl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
%%% -*- coding: utf-8; erlang-indent-level: 2 -*-
22
%%% -------------------------------------------------------------------
3-
%%% Copyright 2010-2021 Manolis Papadakis <[email protected]>,
4-
%%% Eirini Arvaniti <[email protected]>
3+
%%% Copyright 2010-2022 Manolis Papadakis <[email protected]>,
4+
%%% Eirini Arvaniti <[email protected]>,
55
%%% and Kostis Sagonas <[email protected]>
66
%%%
77
%%% This file is part of PropEr.
@@ -19,7 +19,7 @@
1919
%%% You should have received a copy of the GNU General Public License
2020
%%% along with PropEr. If not, see <http://www.gnu.org/licenses/>.
2121

22-
%%% @copyright 2010-2021 Manolis Papadakis, Eirini Arvaniti and Kostis Sagonas
22+
%%% @copyright 2010-2022 Manolis Papadakis, Eirini Arvaniti and Kostis Sagonas
2323
%%% @version {@version}
2424
%%% @author Manolis Papadakis
2525
%%% @doc This module contains PropEr's Unit tests. You need the EUnit
@@ -1426,7 +1426,7 @@ erlang_abstract_code_test_() ->
14261426
M = erlang_abstract_code_test,
14271427
Props = [bits, expr, guard, term, module],
14281428
Opts = [{numtests, 200}, noshrink],
1429-
{timeout, 42,
1429+
{timeout, 100,
14301430
[?_assertEqual(true, proper:quickcheck(M:Prop(), Opts)) || Prop <- Props]}.
14311431

14321432
%%------------------------------------------------------------------------------

0 commit comments

Comments
 (0)