Skip to content

Commit 69357b5

Browse files
committed
Revert debug
1 parent 9dcc86f commit 69357b5

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

plugwise/helper.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -926,7 +926,6 @@ def _control_state(self, data: GwEntityData, loc_id: str) -> str:
926926
Represents the heating/cooling demand-state of the local primary thermostat.
927927
Note: heating or cooling can still be active when the setpoint has been reached.
928928
"""
929-
LOGGER.debug("HOI data: %s", data)
930929
locator = f'location[@id="{loc_id}"]'
931930
if (location := self._domain_objects.find(locator)) is not None:
932931
locator = './actuator_functionalities/thermostat_functionality[type="thermostat"]/control_state'

scripts/tests_and_coverage.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,7 @@ set +u
3131

3232
if [ -z "${GITHUB_ACTIONS}" ] || [ "$1" == "test_and_coverage" ] ; then
3333
# Python tests (rerun with debug if failures)
34-
#PYTHONPATH=$(pwd) pytest -qx tests/ --cov='.' --no-cov-on-fail --cov-report term-missing ||
35-
PYTHONPATH=$(pwd) pytest -xrpP --log-level debug tests/
34+
PYTHONPATH=$(pwd) pytest -qx tests/ --cov='.' --no-cov-on-fail --cov-report term-missing || PYTHONPATH=$(pwd) pytest -xrpP --log-level debug tests/
3635
fi
3736

3837
if [ -z "${GITHUB_ACTIONS}" ] || [ "$1" == "linting" ] ; then

0 commit comments

Comments
 (0)