mirror of
https://github.com/lilydjwg/nvchecker.git
synced 2025-03-10 06:14:02 +00:00
skip archpkg test on Travis-CI
This commit is contained in:
parent
5c54947b42
commit
82ca0cff9c
2 changed files with 7 additions and 1 deletions
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…
Add table
Reference in a new issue