travis: don't run test_aur

This commit is contained in:
lilydjwg 2019-10-15 18:59:16 +08:00
parent eafeaca789
commit 7e44dd5767

View File

@ -1,9 +1,14 @@
# MIT licensed
# Copyright (c) 2013-2017 lilydjwg <lilydjwg@gmail.com>, et al.
import os
from flaky import flaky
import pytest
pytestmark = [pytest.mark.asyncio, pytest.mark.needs_net]
pytestmark = [pytest.mark.asyncio,
pytest.mark.needs_net,
pytest.mark.skipif(os.environ.get('TRAVIS') == 'true',
reason="fail too often")]
@flaky(max_runs=10)
async def test_aur(get_version):