#!/bin/bash
#
# This runs all Python files in src's root
# from the command line.
#
# This is intended to be run from CI.

set -e

for module in src/online_cp/*.py
do
	[ "$module" == src/online_cp/__init__.py ] && continue
	echo uv run python $module
	/usr/bin/time -f "%es  (python $module)\n" \
	uv run python $module
done
