From eb75dc830536254360fb3d9d4a9d8a4c505ee542 Mon Sep 17 00:00:00 2001 From: lilydjwg Date: Wed, 5 Dec 2018 16:38:45 +0800 Subject: [PATCH] Revert "tests: disable bitbucket tests because Travis-CI chooses the obsolete TLS 1.0 protocol" This reverts commit 1da0e785dbfb001334a3ac47135157ac65036ffe. Trying other methods... --- tests/test_vcs.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/test_vcs.py b/tests/test_vcs.py index c272d12..4e8061e 100644 --- a/tests/test_vcs.py +++ b/tests/test_vcs.py @@ -15,8 +15,6 @@ async def test_git(get_version): @pytest.mark.skipif(shutil.which("hg") is None, reason="requires hg command") -@pytest.mark.skipif(os.environ.get('TRAVIS') == 'true', - reason="Travis-CI chooses the obsolete TLS 1.0 protocol") async def test_mercurial(get_version): os.path.exists("example") or os.mkdir("example") assert await get_version("example", {"vcs": "hg+https://bitbucket.org/pil0t/testrepo"}) == "1.1.84679e29c7d9"