use PathLike type instead of str | Path

This commit is contained in:
scito
2022-12-29 23:17:31 +01:00
parent a5768ba1e6
commit 51094a1a18
6 changed files with 18 additions and 9 deletions
+2 -2
View File
@@ -238,11 +238,11 @@ eval "$cmd"
# Test
cmd="pytest"
cmd="pytest --cov=test_extract_otp_secret_keys_pytest"
if $interactive ; then askContinueYn "$cmd"; else echo -e "${cyan}$cmd${reset}";fi
eval "$cmd"
cmd="$PIPENV run pytest"
cmd="$PIPENV run pytest --cov=test_extract_otp_secret_keys_pytest"
if $interactive ; then askContinueYn "$cmd"; else echo -e "${cyan}$cmd${reset}";fi
eval "$cmd"