Skip to content

Commit

Permalink
Add script for running proptests
Browse files Browse the repository at this point in the history
  • Loading branch information
yancyribbens committed Sep 26, 2024
1 parent 73c64fd commit 807aece
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions run_tests.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#!/bin/bash
while :
do
if cargo test proptest ; then
echo "success"
else
echo "fail"
break
fi
done

0 comments on commit 807aece

Please sign in to comment.