diff options
author | alisdair sullivan <alisdairsullivan@yahoo.ca> | 2017-05-04 14:34:39 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-04 14:34:39 -0700 |
commit | 3491283a9fa603204fc012ead969ac36d265a980 (patch) | |
tree | 1c64e818792d924395b0e5766e87525d42d1846a | |
parent | 56cb7e8042aea22b41feaefe41d57811202fec13 (diff) | |
parent | 1f9404e9cd5edc44627a17204c9ba01b32487dae (diff) |
Merge pull request #1541 from erlang/drop-r15
Drop R15 support
-rw-r--r-- | .travis.yml | 2 | ||||
-rw-r--r-- | src/rebar_prv_common_test.erl | 3 |
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 |