mirror of
https://github.com/lilydjwg/nvchecker.git
synced 2025-03-10 06:14:02 +00:00
tests: don't run test_container on GitHub Actions
This commit is contained in:
parent
c03bec7452
commit
5c7918bf7a
1 changed files with 5 additions and 2 deletions
|
@ -1,9 +1,12 @@
|
|||
# MIT licensed
|
||||
# Copyright (c) 2020 Chih-Hsuan Yen <yan12125 at gmail dot com>
|
||||
|
||||
import pytest
|
||||
import os
|
||||
import datetime
|
||||
pytestmark = [pytest.mark.asyncio, pytest.mark.needs_net]
|
||||
|
||||
import pytest
|
||||
pytestmark = [pytest.mark.asyncio, pytest.mark.needs_net,
|
||||
pytest.mark.skipif(os.environ.get('GITHUB_RUN_ID'), reason="400 very often")]
|
||||
|
||||
async def test_container(get_version):
|
||||
assert await get_version("hello-world", {
|
||||
|
|
Loading…
Add table
Reference in a new issue