try five times for AUR tests

This commit is contained in:
lilydjwg 2018-02-07 22:05:14 +08:00
parent 6cf7867428
commit b24f4ae5fe
1 changed files with 2 additions and 2 deletions

View File

@ -5,10 +5,10 @@ from flaky import flaky
import pytest
pytestmark = pytest.mark.asyncio
@flaky
@flaky(max_runs=5)
async def test_aur(get_version):
assert await get_version("ssed", {"aur": None}) == "3.62-2"
@flaky
@flaky(max_runs=5)
async def test_aur_strip_release(get_version):
assert await get_version("ssed", {"aur": None, "strip-release": 1}) == "3.62"