home · contact · privacy
Fix pre-commit script failing to delete test DBs based on new filename format.
authorChristian Heller <c.heller@plomlompom.de>
Mon, 17 Jun 2024 21:16:38 +0000 (23:16 +0200)
committerChristian Heller <c.heller@plomlompom.de>
Mon, 17 Jun 2024 21:16:38 +0000 (23:16 +0200)
scripts/pre-commit

index c92a5eb0f8462356d31c4bc64c434bfd4a46a17e..7abafb9cd9de85b4790b659cf2cc22fa13353db7 100755 (executable)
@@ -11,6 +11,6 @@ done
 echo "Running unittest-parallel on tests/."
 unittest-parallel -t . -s tests/ -p '*.py'
 set +e
-rm test_db:*.*
+rm test_db:*
 set -e
 exit 0