Id assignment

This commit is contained in:
Mauro D
2023-03-31 16:56:05 +00:00
parent ad7cfbcee6
commit b4e392d1c2
16 changed files with 607 additions and 227 deletions

8
coco.sh Normal file
View File

@@ -0,0 +1,8 @@
#!/bin/bash
while true; do
cargo test store_test -- --nocapture
exit_code=$?
if [ $exit_code -ne 0 ]; then
break
fi
done