Disable flaky/slow test (#27125)

pull/26375/head
Erik Montnemery 2019-10-02 20:52:15 +02:00 committed by GitHub
parent 9c49b8dfc1
commit 0eb1d49046
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -1,4 +1,5 @@
"""Tests for the ecobee config flow."""
import pytest
from unittest.mock import patch
from pyecobee import ECOBEE_API_KEY, ECOBEE_REFRESH_TOKEN
@ -116,6 +117,7 @@ async def test_token_request_fails(hass):
assert result["description_placeholders"] == {"pin": "test-pin"}
@pytest.mark.skip(reason="Flaky/slow")
async def test_import_flow_triggered_but_no_ecobee_conf(hass):
"""Test expected result if import flow triggers but ecobee.conf doesn't exist."""
flow = config_flow.EcobeeFlowHandler()