Skip to content

Commit 527f18b

Browse files
committed
skip tensorflow_js weights validation
1 parent a67ca21 commit 527f18b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/static_validation.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -141,8 +141,8 @@ def prepare_dynamic_test_cases(
141141
for wf in rd.weights:
142142
# we skip the keras validation for now, see
143143
# https://github.com/bioimage-io/collection-bioimage-io/issues/16
144-
if wf == "keras_hdf5":
145-
warnings.warn("keras weights are currently not validated")
144+
if wf in ("keras_hdf5", "tensorflow_js"):
145+
warnings.warn(f"{wf} weights are currently not validated")
146146
continue
147147

148148
env_name = ensure_valid_conda_env_name(version_id)

0 commit comments

Comments
 (0)