mirror of
https://github.com/lilydjwg/nvchecker.git
synced 2025-03-10 06:14:02 +00:00
travis: don't run test_aur
This commit is contained in:
parent
eafeaca789
commit
7e44dd5767
1 changed files with 6 additions and 1 deletions
|
@ -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):
|
||||
|
|
Loading…
Add table
Reference in a new issue