Skip to content

Commit

Permalink
Chore: Update shell script to rename tests
Browse files Browse the repository at this point in the history
Signed-off-by: Matthew Watkins <[email protected]>
  • Loading branch information
ModeSevenIndustrialSolutions committed Nov 23, 2023
1 parent a7c1c21 commit 814681c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/rename-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

#set -x

for FILE in $(find . -name "*test_*" -print | xargs echo); do
for FILE in $(find . -name "*test_*" -print | xargs -0 echo); do
if (echo "$FILE" | grep -v ".zip" > /dev/null)
then
NEW_NAME=$(echo "$FILE" | sed "s:test_::g" | sed "s:.py:_test.py:g")
Expand Down

0 comments on commit 814681c

Please sign in to comment.