summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFred Hebert <mononcqc@ferd.ca>2017-05-03 08:36:11 -0400
committerFred Hebert <mononcqc@ferd.ca>2017-05-03 08:36:11 -0400
commit1f9404e9cd5edc44627a17204c9ba01b32487dae (patch)
tree1c64e818792d924395b0e5766e87525d42d1846a
parent56cb7e8042aea22b41feaefe41d57811202fec13 (diff)
Drop R15 support
It can't even fetch packages from Hex anymore because of old SSL/TLS libraries, and so it can't bootstrap anymore either. Plus R20 comes out soon, and 5 major versions is quite enough.
-rw-r--r--.travis.yml2
-rw-r--r--src/rebar_prv_common_test.erl3
2 files changed, 0 insertions, 5 deletions
diff --git a/.travis.yml b/.travis.yml
index 8923e86..7624db3 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -2,8 +2,6 @@ language: erlang
matrix:
include:
- os: linux
- otp_release: R15B03
- - os: linux
otp_release: R16B03-1
- os: linux
otp_release: 17.5
diff --git a/src/rebar_prv_common_test.erl b/src/rebar_prv_common_test.erl
index 62dd9f1..e6788f8 100644
--- a/src/rebar_prv_common_test.erl
+++ b/src/rebar_prv_common_test.erl
@@ -567,9 +567,6 @@ get_tests_from_specs(Specs) ->
case ct_testspec:collect_tests_from_file(Specs,true) of
Tests when is_list(Tests) ->
{ok,[{S,ct_testspec:prepare_tests(R)} || {S,R} <- Tests]};
- R when is_tuple(R), element(1,R)==testspec ->
- %% R15
- {ok,[{Specs,ct_testspec:prepare_tests(R)}]};
Error ->
Error
end