skip batch_convert

Signed-off-by: Michele Dolfi <dol@zurich.ibm.com>
This commit is contained in:
Michele Dolfi 2024-08-29 09:05:51 +02:00
parent c10f555749
commit d7a447603d

View File

@ -22,6 +22,12 @@ jobs:
- name: Run examples
run: |
for file in examples/*.py; do
# Skip batch_convert.py
if [[ "$(basename "$file")" == "batch_convert.py" ]]; then
echo "Skipping $file"
continue
fi
echo "Running example $file"
poetry run python "$file" || exit 1
done