update tests and bump version to dev

This commit is contained in:
lilydjwg 2018-11-19 15:16:29 +08:00
parent 1adc38099a
commit d0ee359209
3 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
# MIT licensed
# Copyright (c) 2013-2018 lilydjwg <lilydjwg@gmail.com>, et al.
__version__ = '1.2.7'
__version__ = '1.3dev'

View File

@ -7,7 +7,7 @@ pytestmark = pytest.mark.asyncio
@flaky
async def test_archpkg(get_version):
assert await get_version("ipw2100-fw", {"archpkg": None}) == "1.3-8"
assert await get_version("ipw2100-fw", {"archpkg": None}) == "1.3-9"
@flaky
async def test_archpkg_strip_release(get_version):

View File

@ -8,7 +8,7 @@ pytestmark = [pytest.mark.asyncio,
reason="requires pacman command")]
async def test_pacman(get_version):
assert await get_version("ipw2100-fw", {"pacman": None}) == "1.3-8"
assert await get_version("ipw2100-fw", {"pacman": None}) == "1.3-9"
async def test_pacman_strip_release(get_version):
assert await get_version("ipw2100-fw", {"pacman": None, "strip-release": 1}) == "1.3"