* Fixes the buienradar component and add smoke tests * Fix errors due to circular imports after imports were moved. * Add smoke test so this situation will be caught in the future. * Add buienradar.util to coveragerc * Refactor tests to standalone pytest test function style * Add __init__ to buienradar tests
7 lines
198 B
Python
7 lines
198 B
Python
"""Constants for buienradar component."""
|
|
DEFAULT_TIMEFRAME = 60
|
|
|
|
"""Schedule next call after (minutes)."""
|
|
SCHEDULE_OK = 10
|
|
"""When an error occurred, new call after (minutes)."""
|
|
SCHEDULE_NOK = 2
|