Skip to content

Commit

Permalink
Fix build system unit tests (#23132)
Browse files Browse the repository at this point in the history
* Fix build system unit tests

* Also fix iterable import (python 3.8 failure reported by Ian)
  • Loading branch information
andy31415 authored and pull[bot] committed Aug 21, 2023
1 parent dd32499 commit 2b21f59
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions scripts/build/build/target.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,8 @@
import os
import re

from collections.abc import Iterable
from dataclasses import dataclass
from typing import Any, Dict, List, Optional
from typing import Any, Dict, List, Iterable, Optional


@dataclass(init=False)
Expand Down
2 changes: 1 addition & 1 deletion scripts/build/testdata/all_targets_linux_x64.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ linux-{x64,arm64}-{rpc-console,all-clusters,all-clusters-minimal,chip-tool,therm
linux-x64-efr32-test-runner[-clang]
imx-{chip-tool,lighting-app,thermostat,all-clusters-app,all-clusters-minimal-app,ota-provider-app}[-release]
infineon-psoc6-{lock,light,all-clusters,all-clusters-minimal}[-ota][-updateimage]
k32w-{light,shell,lock,contact}[-no-ota][-low-power][-nologs]
k32w-{light,shell,lock,contact}[-se05x][-no-ble][-no-ota][-low-power][-nologs]
mbed-cy8cproto_062_4343w-{lock,light,all-clusters,all-clusters-minimal,pigweed,shell}[-release][-develop][-debug]
mw320-all-clusters-app
nrf-{nrf5340dk,nrf52840dk,nrf52840dongle}-{all-clusters,all-clusters-minimal,lock,light,shell,pump,pump-controller}[-rpc]
Expand Down

0 comments on commit 2b21f59

Please sign in to comment.