Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion test/pytest/generate_ci_yaml.py
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,11 @@ def generate_test_yaml(test_root='.'):
name = 'qkerasV3'
test_files = ' '.join([str(path.relative_to(test_root)) for path in batch_paths])
batch_need_example_model = int(any([qkeras3_need_examples[i] for i in batch_idxs]))
diff_yml = yaml.safe_load(template.format(name, '.pytest-qkeras-v3-only', test_files, batch_need_example_model))
diff_yml = yaml.safe_load(
template_keras3_backend.format(
name, '.pytest-qkeras-v3-only', test_files, batch_need_example_model, 'tensorflow'
)
)
yml.update(diff_yml)

backend_specific_paths = [path for path in test_root.glob('**/test_*.py') if path.stem in KERAS3_BACKEND_SPECIFIC_LIST]
Expand Down
Loading