1
0
mirror of https://github.com/esphome/esphome.git synced 2025-09-23 05:32:22 +01:00

add real time clock

This commit is contained in:
Tomasz Duda
2024-07-12 16:03:16 +02:00
parent e10bd36559
commit ce7f666d6b
7 changed files with 35 additions and 18 deletions

View File

@@ -58,10 +58,6 @@ for f in ./tests/components/$target_component/*.*.yaml; do
IFS='.' read -r -a file_name <<< "${folder_name[4]}"
test_name="${file_name[0]}"
if [ "$test_name" = "exclude" ]; then
# this is not a test file. we need to skip it.
continue
fi
target_platform="${file_name[1]}"
file_name_parts=${#file_name[@]}
@@ -73,11 +69,6 @@ for f in ./tests/components/$target_component/*.*.yaml; do
IFS='.' read -r -a file_name <<< "${folder_name[3]}"
target_platform="${file_name[1]}"
if [ -f "./tests/components/$target_component/exclude.$test_name.$target_platform.yaml" ]; then
echo "Component $target_component is excluded from testing on $target_platform"
continue
fi
start_esphome
done