mirror of
https://github.com/basnijholt/adaptive-lighting.git
synced 2026-09-11 22:34:04 +02:00
* Update .devcontainer * Drop support for ≤2023.6 * Add .vscode/settings.json * Use async_process_ha_core_config * Fix for HA ≤2023.10 * pop normalized_name * Add comments * use . instead of source * set pytest args * set country * use py3.13 for dev branch of core * set country in test_adaptive_lighting_time_zones_with_default_settings * Add comment
20 lines
508 B
JSON
20 lines
508 B
JSON
{
|
|
"files.associations": {
|
|
"*.yaml": "home-assistant"
|
|
},
|
|
"python.defaultInterpreterPath": "${workspaceFolder}/.venv/bin/python",
|
|
"python.testing.pytestEnabled": true,
|
|
"python.testing.pytestArgs": [
|
|
"-vvv",
|
|
"-qq",
|
|
"--timeout=9",
|
|
"--durations=10",
|
|
"--cov=homeassistant",
|
|
"--cov-report=xml",
|
|
"-o",
|
|
"console_output_style=count",
|
|
"-p",
|
|
"no:sugar",
|
|
"core/tests/components/adaptive_lighting"
|
|
]
|
|
}
|