mirror of
https://github.com/lilydjwg/nvchecker
synced 2024-12-13 18:25:34 +00:00
19 lines
686 B
Python
19 lines
686 B
Python
# MIT licensed
|
|
# Copyright (c) 2017 Felix Yan <felixonmars@archlinux.org>, et al.
|
|
|
|
from flaky import flaky
|
|
import pytest
|
|
pytestmark = [pytest.mark.asyncio, pytest.mark.needs_net]
|
|
|
|
@flaky(max_runs=10)
|
|
async def test_debianpkg(get_version):
|
|
assert await get_version("sigrok-firmware-fx2lafw", {"debianpkg": None}) == "0.1.7-1"
|
|
|
|
@flaky(max_runs=10)
|
|
async def test_debianpkg_strip_release(get_version):
|
|
assert await get_version("sigrok-firmware-fx2lafw", {"debianpkg": None, "strip-release": 1}) == "0.1.7"
|
|
|
|
@flaky(max_runs=10)
|
|
async def test_debianpkg_suite(get_version):
|
|
assert await get_version("sigrok-firmware-fx2lafw", {"debianpkg": None, "suite": "jessie"}) == "0.1.2-1"
|