CI: Disable daily jobs
[ci-management.git] / jjb / sdc / python3-verify.sh
1 #!/bin/bash
2
3 py_files=$(find . -name '*.py' -not -path "*/node_modules/*" -not -path "*/target/*")
4
5 if python3 -m py_compile ${py_files}
6 then
7     echo "All python files compiled successfully"
8     exit 0
9 else
10     echo "Failed to compile all files in Python 3"
11     exit 1
12 fi