Disable Google tests because they connect to the internet

pull/4522/head
Paulus Schoutsen 2016-11-21 23:31:19 -08:00
parent c28aea3f5b
commit b60485dc19
1 changed files with 4 additions and 0 deletions

View File

@ -2,6 +2,8 @@
import logging
import unittest
import pytest
import homeassistant.components.google as google
from homeassistant.bootstrap import setup_component
from tests.common import get_test_home_assistant
@ -9,6 +11,8 @@ from tests.common import get_test_home_assistant
_LOGGER = logging.getLogger(__name__)
# Because they connect to the internet
@pytest.mark.skip
class TestGoogle(unittest.TestCase):
"""Test the Google component."""