nvchecker/tests-old/test_vcs.py

33 lines
1.5 KiB
Python
Raw Normal View History

2017-02-28 07:24:53 +00:00
# MIT licensed
# Copyright (c) 2013-2017 lilydjwg <lilydjwg@gmail.com>, et al.
2015-11-05 12:59:07 +00:00
import os
import shutil
import pytest
2017-07-04 09:04:29 +00:00
pytestmark = pytest.mark.asyncio
2015-11-05 12:59:07 +00:00
2017-07-04 09:04:29 +00:00
@pytest.mark.skipif(shutil.which("git") is None,
reason="requires git command")
async def test_git(get_version):
os.path.exists("example") or os.mkdir("example")
assert await get_version("example", {"vcs": "git+https://github.com/harry-sanabria/ReleaseTestRepo.git"}) == "1.1.2b3cdf6134b07ae6ac77f11b586dc1ae6d1521db"
2015-11-05 12:59:07 +00:00
2017-07-04 09:04:29 +00:00
@pytest.mark.skipif(shutil.which("hg") is None,
reason="requires hg command")
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"
2017-07-04 09:04:29 +00:00
@pytest.mark.skipif(shutil.which("git") is None,
reason="requires git command")
async def test_git_max_tag(get_version):
os.path.exists("example") or os.mkdir("example")
assert await get_version("example", {"vcs": "git+https://github.com/harry-sanabria/ReleaseTestRepo.git", "use_max_tag": 1}) == "second_release"
2017-07-04 09:04:29 +00:00
@pytest.mark.skipif(shutil.which("git") is None,
reason="requires git command")
async def test_git_max_tag_with_ignored_tags(get_version):
os.path.exists("example") or os.mkdir("example")
assert await get_version("example", {"vcs": "git+https://github.com/harry-sanabria/ReleaseTestRepo.git", "use_max_tag": 1, "ignored_tags": "second_release release3"}) == "first_release"