Limit worker pool to 10 threads (#3560)
* Limit worker pool to 10 threads * Comment evdev in requirements * Allow skipping RFXtrx tests locally * Fix worker pool size tests * lol whut
This commit is contained in:
parent
a084232cf5
commit
4b8bc90d16
15 changed files with 41 additions and 5 deletions
|
@ -1,6 +1,8 @@
|
|||
"""The tests for the Rfxtrx sensor platform."""
|
||||
import unittest
|
||||
|
||||
import pytest
|
||||
|
||||
from homeassistant.bootstrap import _setup_component
|
||||
from homeassistant.components import rfxtrx as rfxtrx_core
|
||||
from homeassistant.const import TEMP_CELSIUS
|
||||
|
@ -8,6 +10,7 @@ from homeassistant.const import TEMP_CELSIUS
|
|||
from tests.common import get_test_home_assistant
|
||||
|
||||
|
||||
@pytest.mark.skipif("os.environ.get('RFXTRX') == 'SKIP'")
|
||||
class TestSensorRfxtrx(unittest.TestCase):
|
||||
"""Test the Rfxtrx sensor platform."""
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue