mirror of
https://github.com/lilydjwg/nvchecker.git
synced 2025-03-10 06:14:02 +00:00
Ignore certain tags while sorting. This option must be used together with use_max_tag. This can be useful to avoid some known badly versioned tags, so the newer tags won't be "overriden" by the old broken ones.
19 lines
1,009 B
Python
19 lines
1,009 B
Python
import os
|
|
import pytest
|
|
from tests.helper import ExternalVersionTestCase
|
|
|
|
|
|
@pytest.mark.skipif("NVCHECKER_GITHUB_TOKEN" not in os.environ,
|
|
reason="requires NVCHECKER_GITHUB_TOKEN, or it fails too much")
|
|
class GitHubTest(ExternalVersionTestCase):
|
|
def test_github(self):
|
|
self.assertEqual(self.sync_get_version("example", {"github": "harry-sanabria/ReleaseTestRepo"}), "20140122")
|
|
|
|
def test_github_latest_release(self):
|
|
self.assertEqual(self.sync_get_version("example", {"github": "harry-sanabria/ReleaseTestRepo", "use_latest_release": 1}), "release3")
|
|
|
|
def test_github_max_tag(self):
|
|
self.assertEqual(self.sync_get_version("example", {"github": "harry-sanabria/ReleaseTestRepo", "use_max_tag": 1}), "second_release")
|
|
|
|
def test_github_max_tag_with_ignored_tags(self):
|
|
self.assertEqual(self.sync_get_version("example", {"github": "harry-sanabria/ReleaseTestRepo", "use_max_tag": 1, "ignored_tags": "second_release release3"}), "first_release")
|