mirror of
https://github.com/lilydjwg/nvchecker
synced 2025-02-03 03:52:04 +00:00
skip archpkg test on Travis-CI
This commit is contained in:
parent
5c54947b42
commit
82ca0cff9c
1
.gitignore
vendored
1
.gitignore
vendored
@ -3,6 +3,7 @@ records/
|
||||
__pycache__/
|
||||
/build/
|
||||
.cache/
|
||||
.eggs/
|
||||
*.pyc
|
||||
*.pyo
|
||||
.travis.pub
|
||||
|
@ -1,6 +1,11 @@
|
||||
import os
|
||||
|
||||
import pytest
|
||||
|
||||
from tests.helper import ExternalVersionTestCase
|
||||
|
||||
|
||||
@pytest.mark.skipif("TRAVIS" in os.environ,
|
||||
reason="Travis-CI has issues connecting to the Arch website")
|
||||
class ArchPKGTest(ExternalVersionTestCase):
|
||||
def test_archpkg(self):
|
||||
self.assertEqual(self.sync_get_version("ipw2100-fw", {"archpkg": None}), "1.3-7")
|
||||
|
Loading…
Reference in New Issue
Block a user