Files
nixos/home/.local/usr/bin/inotify_test_pytest.sh
2025-08-15 17:44:24 -04:00

10 lines
195 B
Bash
Executable File

#!/usr/bin/env sh
while true; do
inotifywait -e modify,create,delete -r ./src ./tests/
clear
echo "File change detected. Running tests..."
pytest -s
echo "Waiting for changes..."
done