mercurial: tests: update asyncio mark

This commit is contained in:
lilydjwg 2024-03-09 19:59:01 +08:00
parent 1005bd5f01
commit 4ec12d30fd
1 changed files with 8 additions and 5 deletions

View File

@ -2,10 +2,13 @@
# Copyright (c) 2020 Felix Yan <felixonmars@archlinux.org>, et al.
import pytest
pytestmark = [pytest.mark.asyncio, pytest.mark.needs_net]
pytestmark = [
pytest.mark.asyncio(scope="session"),
pytest.mark.needs_net,
]
async def test_mercurial(get_version):
assert await get_version("example", {
"source": "mercurial",
"mercurial": "https://repo.mercurial-scm.org/hg-website/json-tags",
}) == "v1.0"
assert await get_version("example", {
"source": "mercurial",
"mercurial": "https://repo.mercurial-scm.org/hg-website/json-tags",
}) == "v1.0"